mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 12:12:30 +00:00
12 lines
525 B
SCSS
12 lines
525 B
SCSS
//- A placeholder for creating a stackable grid of elements. Particularly for making stacked input labels.
|
|
%darkmodeStyle{
|
|
--borderColor: var(--dark-secondarytext);//Our basic border color
|
|
--fontColor: var(--dark-secondarytext);//Our basic font color
|
|
--backColor: var(--dark-surface1);//Set our background to match the dark mode background of the sheet
|
|
--selectedColor:var(--fontColor);
|
|
--subHeadBackColor:var(--dark-primary);
|
|
--checkColor: var(--darkCheck);
|
|
img{
|
|
filter: brightness(.8) contrast(1.2);
|
|
}
|
|
} |