fork init
This commit is contained in:
parent
ef9c2e2cc0
commit
b0c55e3c8e
11
README.md
11
README.md
|
@ -6,6 +6,15 @@
|
||||||
An opinionated simple theme with Solarized colours
|
An opinionated simple theme with Solarized colours
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
|
benharri's fork with some small tweaks that i've collected
|
||||||
|
|
||||||
|
some of the tweaks include:
|
||||||
|
|
||||||
|
* compact chanlist
|
||||||
|
* compact userlist (hides roles/modes)
|
||||||
|
* [ibm plex mono](https://github.com/ibm/plex)
|
||||||
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://yarn.pm/thelounge-theme-solarized"><img
|
<a href="https://yarn.pm/thelounge-theme-solarized"><img
|
||||||
alt="npm version"
|
alt="npm version"
|
||||||
|
@ -25,5 +34,5 @@
|
||||||
Install this theme with:
|
Install this theme with:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
thelounge install thelounge-theme-solarized
|
thelounge install thelounge-theme-solarized-fork-monospace
|
||||||
```
|
```
|
||||||
|
|
64
package.json
64
package.json
|
@ -1,32 +1,32 @@
|
||||||
{
|
{
|
||||||
"name": "thelounge-theme-solarized",
|
"name": "thelounge-theme-solarized-fork-monospace",
|
||||||
"version": "1.1.2",
|
"version": "1.1.2",
|
||||||
"description": "A simple theme with Solarized colours",
|
"description": "A simple theme with Solarized colors",
|
||||||
"main": "package.json",
|
"main": "package.json",
|
||||||
"thelounge": {
|
"thelounge": {
|
||||||
"name": "Solarized",
|
"name": "Solarized-monospace",
|
||||||
"type": "theme",
|
"type": "theme",
|
||||||
"css": "theme.css",
|
"css": "theme.css"
|
||||||
"themeColor": "#002b36"
|
},
|
||||||
},
|
"license": "MIT",
|
||||||
"license": "MIT",
|
"homepage": "https://github.com/benharri-forks/thelounge-theme-solarized",
|
||||||
"homepage": "https://github.com/thelounge/thelounge-theme-solarized",
|
"repository": {
|
||||||
"repository": {
|
"type": "git",
|
||||||
"type": "git",
|
"url": "git+https://github.com/benharri-forks/thelounge-theme-solarized.git"
|
||||||
"url": "git+https://github.com/thelounge/thelounge-theme-solarized.git"
|
},
|
||||||
},
|
"keywords": [
|
||||||
"keywords": [
|
"thelounge",
|
||||||
"thelounge",
|
"thelounge-theme"
|
||||||
"thelounge-theme"
|
],
|
||||||
],
|
"bugs": {
|
||||||
"bugs": {
|
"url": "https://github.com/benharri-forks/thelounge-theme-solarized/issues"
|
||||||
"url": "https://github.com/thelounge/thelounge-theme-solarized/issues"
|
},
|
||||||
},
|
"devDependencies": {
|
||||||
"devDependencies": {
|
"stylelint": "^9.2.0",
|
||||||
"stylelint": "^10.1.0",
|
"stylelint-config-standard": "^18.2.0"
|
||||||
"stylelint-config-standard": "^18.3.0"
|
},
|
||||||
},
|
"scripts": {
|
||||||
"scripts": {
|
"test": "stylelint theme.css"
|
||||||
"test": "stylelint theme.css"
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 58 KiB |
56
theme.css
56
theme.css
|
@ -1,10 +1,38 @@
|
||||||
/*!
|
/*!
|
||||||
* Solarized
|
* Solarized
|
||||||
*
|
*
|
||||||
* URL: https://github.com/thelounge/lounge-theme-solarized
|
* URL: https://github.com/benharri/lounge-theme-solarized
|
||||||
* License: MIT
|
* License: MIT
|
||||||
|
* forked by benharri
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* my custom stuff */
|
||||||
|
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i');
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: 'IBM Plex Mono', monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-specified-css-input {
|
||||||
|
height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar .networks {
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar .network {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar .chan {
|
||||||
|
padding: 3px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */
|
/* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
color: rgba(131, 148, 150, 0.9);
|
color: rgba(131, 148, 150, 0.9);
|
||||||
|
@ -56,10 +84,6 @@ html {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar .logo-container {
|
|
||||||
padding-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .logo-inverted {
|
#sidebar .logo-inverted {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
}
|
}
|
||||||
|
@ -154,6 +178,16 @@ body {
|
||||||
color: #93c7eb;
|
color: #93c7eb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar .chan.query::before,
|
||||||
|
#sidebar .chan.channel::before {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar .network,
|
||||||
|
#sidebar .network-placeholder {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hide close button on channels, it is not used that frequently */
|
/* Hide close button on channels, it is not used that frequently */
|
||||||
.channel-list-item[data-type="channel"] .close-tooltip {
|
.channel-list-item[data-type="channel"] .close-tooltip {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -191,6 +225,18 @@ body {
|
||||||
border-color: var(--background-light-color);
|
border-color: var(--background-light-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#chat .user-mode::before {
|
||||||
|
content: "" !important;
|
||||||
|
border: none;
|
||||||
|
line-height: inherit;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#form {
|
||||||
|
border: 1px solid var(--background-light-color);
|
||||||
|
}
|
||||||
|
|
||||||
#chat .userlist .search,
|
#chat .userlist .search,
|
||||||
#form .input {
|
#form .input {
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
Loading…
Reference in New Issue