Sync with nord.

This commit is contained in:
Seraphim R. Pardee 2021-08-03 11:58:27 -04:00
parent e1e8552809
commit f5c010ee68
No known key found for this signature in database
GPG Key ID: F5D3989AB7E40B62
3 changed files with 18 additions and 24 deletions

View File

@ -1,11 +1,7 @@
# thelounge-theme-nord
# thelounge-theme-seraphimrp
Nordify your lounge.
A personal theme.
## Install
> `thelounge install thelounge-theme-nord`
## Credits
This theme is based on [SpaceLenore](https://github.com/SpaceLenore)'s [thelounge-theme-dracula](https://github.com/SpaceLenore/thelounge-theme-dracula), as I liked the layout CSS.
> `thelounge install thelounge-theme-seraphimrp`

View File

@ -1,7 +1,7 @@
{
"name": "thelounge-theme-seraphimrp",
"description": "Personal theme for thelounge",
"version": "1.0.5",
"version": "1.0.6",
"keywords": [
"thelounge",
"thelounge-theme"

View File

@ -51,12 +51,6 @@ html {
scrollbar-width: thin;
}
#chat .msg[data-type="notice"] .content,
#chat .msg[data-type="notice"] .time,
#chat .msg[data-type="notice"] .user {
color: var(--highlight-color);
}
#loading .logo,
#windows .logo {
display: none;
@ -74,6 +68,9 @@ html {
.input {
background-color: var(--background-light-color);
color: var(--body-color);
font-size: 12px;
height: 30px;
line-height: 30px;
}
.jump-to-input .input {
@ -166,6 +163,12 @@ body {
color: var(--highlight-color);
}
#chat .msg[data-type="notice"] .content,
#chat .msg[data-type="notice"] .time,
#chat .msg[data-type="notice"] .user {
color: var(--highlight-color);
}
#chat .msg.self .content {
color: var(--body-color);
}
@ -370,10 +373,14 @@ body {
color: var(--button-color);
}
.jump-to-input::before {
line-height: 30px !important;
}
/* personal modifications begin here */
body {
font-family: "JetBrains Mono";
font: 16px JetBrains Mono;
}
#form,
@ -387,12 +394,3 @@ body {
.header .topic {
font-size: 12px;
}
.input {
height: 30px;
line-height: 30px;
}
.jump-to-input::before {
line-height: 30px !important;
}