mirror of
https://github.com/zyllian/webdog.git
synced 2025-01-18 11:44:35 -08:00
pinkify
This commit is contained in:
parent
19fd33eceb
commit
688fe2bc48
3 changed files with 34 additions and 15 deletions
|
@ -1,24 +1,11 @@
|
||||||
|
@import "./themes/pinkle.scss";
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|
||||||
--bg-color: #eee;
|
|
||||||
--text-color: black;
|
|
||||||
--accent-color: #b520e7;
|
|
||||||
--accent-text-color: var(--bg-color);
|
|
||||||
--accent-color-neutral: #aaa;
|
|
||||||
--accent-text-color-neutral: #eee;
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
--bg-color: #333;
|
|
||||||
--text-color: #ccc;
|
|
||||||
--accent-text-color: black;
|
|
||||||
--accent-color-neutral: #555;
|
|
||||||
--accent-text-color-neutral: #bbb;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header.main-header {
|
header.main-header {
|
||||||
|
|
16
site/sass/themes/basic.scss
Normal file
16
site/sass/themes/basic.scss
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
body {
|
||||||
|
--bg-color: #eee;
|
||||||
|
--text-color: black;
|
||||||
|
--accent-color: #b520e7;
|
||||||
|
--accent-text-color: var(--bg-color);
|
||||||
|
--accent-color-neutral: #aaa;
|
||||||
|
--accent-text-color-neutral: #eee;
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
--bg-color: #333;
|
||||||
|
--text-color: #ccc;
|
||||||
|
--accent-text-color: black;
|
||||||
|
--accent-color-neutral: #555;
|
||||||
|
--accent-text-color-neutral: #bbb;
|
||||||
|
}
|
||||||
|
}
|
16
site/sass/themes/pinkle.scss
Normal file
16
site/sass/themes/pinkle.scss
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
body {
|
||||||
|
--bg-color: rgb(255, 196, 252);
|
||||||
|
--text-color: black;
|
||||||
|
--accent-color: rgb(197, 48, 197);
|
||||||
|
--accent-text-color: white;
|
||||||
|
--accent-color-neutral: var(--accent-color);
|
||||||
|
--accent-text-color-neutral: var(--accent-text-color);
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
--bg-color: #333;
|
||||||
|
--text-color: #ccc;
|
||||||
|
--accent-text-color: black;
|
||||||
|
--accent-color-neutral: #555;
|
||||||
|
--accent-text-color-neutral: #bbb;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue