forked from deepStateMirrors/tabi
✨ feat: introduce skins to customise the theme (#105)
This commit is contained in:
parent
d2780f42a3
commit
f8cce3001c
45 changed files with 673 additions and 7 deletions
12
sass/skins/teal.scss
Normal file
12
sass/skins/teal.scss
Normal file
|
@ -0,0 +1,12 @@
|
|||
// This file is never loaded; it's serves as reference for the default skin (in main.scss).
|
||||
// When creating your own skin, you can use https://webaim.org/resources/contrastchecker/
|
||||
// to verify the accessibility and readability of your colourscheme.
|
||||
// The light background is #fff and the dark background is #1f1f1f.
|
||||
|
||||
:root {
|
||||
--primary-color: #087e96; // Contrast ratio: 4.73:1
|
||||
}
|
||||
|
||||
[data-theme='dark'] {
|
||||
--primary-color: #91e0ee; // Contrast ratio: 11.06:1
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue