friendship ended with social-app. php is my new best friend
1button[data-theme="rosepine"] {
2 background-color: #faf4ed;
3 background-image: linear-gradient(to bottom right, #faf4ed, #d7827e);
4
5 @media (prefers-color-scheme: dark) {
6 background-color: #232136;
7 background-image: linear-gradient(to bottom right, #232136, #ea9a97);
8 }
9}
10
11body[data-theme="rosepine"] {
12 --border-color: #cecacd;
13 --background-color: #faf4ed;
14 --text-color: #575279;
15 --link-color: #d7827e;
16 --btn-primary-bg: #b4637a;
17 --btn-primary-color: #faf4ed;
18 --btn-danger-bg: #d7827e;
19 --btn-danger-color: #faf4ed;
20 --blend-color: #faf4ed;
21
22 @media (prefers-color-scheme: dark) {
23 --border-color: #cecacd;
24 --background-color: #56526e;
25 --text-color: #e0def4;
26 --link-color: #ea9a97;
27 --btn-primary-bg: #eb6f92;
28 --btn-primary-color: #56526e;
29 --btn-danger-bg: #ea9a97;
30 --btn-danger-color: #56526e;
31 --blend-color: #56526e;
32 }
33}