friendship ended with social-app. php is my new best friend
1button[data-theme="solarized"] {
2 background-color: #faf4ed;
3 background-image: linear-gradient(to bottom right, #faf4ed, #2aa198);
4
5 @media (prefers-color-scheme: dark) {
6 background-color: #002b36;
7 background-image: linear-gradient(to bottom right, #002b36, #b58900);
8 }
9}
10
11body[data-theme="solarized"] {
12 --border-color: #586e75;
13 --background-color: #fdf6e3;
14 --text-color: #002b36;
15 --link-color: #2aa198;
16 --btn-primary-bg: #268bd2;
17 --btn-primary-color: #fdf6e3;
18 --btn-danger-bg: #d33682;
19 --btn-danger-color: #fdf6e3;
20 --blend-color: #fdf6e3;
21
22 @media (prefers-color-scheme: dark) {
23 --border-color: #93a1a1;
24 --background-color: #002b36;
25 --text-color: #fdf6e3;
26 --link-color: #b58900;
27 --btn-primary-bg: #268bd2;
28 --btn-primary-color: #fdf6e3;
29 --btn-danger-bg: #dc322f;
30 --btn-danger-color: #fdf6e3;
31 --blend-color: #002b36;
32 }
33}