This commit is contained in:
parent
332239c260
commit
f55decfec6
2 changed files with 18 additions and 3 deletions
|
|
@ -29,7 +29,8 @@ it doesn't have a name, call it "synth.download color scheme official real"
|
||||||
--foreground: #3d454d;
|
--foreground: #3d454d;
|
||||||
--selection: #f0eee4;
|
--selection: #f0eee4;
|
||||||
--comment: #abb0b6;
|
--comment: #abb0b6;
|
||||||
--accent: #fd9e1a;
|
--accent: #ffaa33;
|
||||||
|
--link: #9f5e03;
|
||||||
|
|
||||||
/* original ayu colors */
|
/* original ayu colors */
|
||||||
--orange: #ff9940;
|
--orange: #ff9940;
|
||||||
|
|
@ -75,6 +76,7 @@ it doesn't have a name, call it "synth.download color scheme official real"
|
||||||
--selection: #253340;
|
--selection: #253340;
|
||||||
--comment: #5c6773;
|
--comment: #5c6773;
|
||||||
--accent: #e6b450;
|
--accent: #e6b450;
|
||||||
|
--link: #e6b450;
|
||||||
|
|
||||||
/* original ayu colors */
|
/* original ayu colors */
|
||||||
--orange: #ffb454;
|
--orange: #ffb454;
|
||||||
|
|
@ -121,6 +123,7 @@ html[data-theme="light"] {
|
||||||
--selection: #f0eee4;
|
--selection: #f0eee4;
|
||||||
--comment: #abb0b6;
|
--comment: #abb0b6;
|
||||||
--accent: #ffaa33;
|
--accent: #ffaa33;
|
||||||
|
--link: #9f5e03;
|
||||||
|
|
||||||
/* original ayu colors */
|
/* original ayu colors */
|
||||||
--orange: #ff9940;
|
--orange: #ff9940;
|
||||||
|
|
@ -165,6 +168,7 @@ html[data-theme="dark"] {
|
||||||
--selection: #253340;
|
--selection: #253340;
|
||||||
--comment: #5c6773;
|
--comment: #5c6773;
|
||||||
--accent: #e6b450;
|
--accent: #e6b450;
|
||||||
|
--link: #e6b450;
|
||||||
|
|
||||||
/* original ayu colors */
|
/* original ayu colors */
|
||||||
--orange: #ffb454;
|
--orange: #ffb454;
|
||||||
|
|
@ -259,13 +263,13 @@ button {
|
||||||
/* links should look good i think */
|
/* links should look good i think */
|
||||||
a {
|
a {
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
color: var(--accent);
|
color: var(--link);
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
text-shadow: 0em 0em 0.25em var(--accent);
|
text-shadow: 0em 0em 0.25em var(--link);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* smol text */
|
/* smol text */
|
||||||
|
|
@ -427,6 +431,13 @@ summary {
|
||||||
transition: all .2s;
|
transition: all .2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* focus styling */
|
||||||
|
:focus-visible {
|
||||||
|
outline: .4rem solid var(--ui-purple) !important;
|
||||||
|
border-radius: .2rem;
|
||||||
|
z-index: 999999 !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------------
|
/* ---------------
|
||||||
- alt text popup -
|
- alt text popup -
|
||||||
--------------- */
|
--------------- */
|
||||||
|
|
|
||||||
|
|
@ -164,6 +164,10 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="checkbox"]#nav-settings-menu:focus-visible {
|
||||||
|
left: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
label[data-toggle="nav-settings"] {
|
label[data-toggle="nav-settings"] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue