summaryrefslogtreecommitdiffstats
path: root/assets/css/_vars.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_vars.scss')
-rw-r--r--assets/css/_vars.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/assets/css/_vars.scss b/assets/css/_vars.scss
index d029d7f..47ca599 100644
--- a/assets/css/_vars.scss
+++ b/assets/css/_vars.scss
@@ -160,6 +160,28 @@ $content--width: 46rem;
160 ), 'light'); 160 ), 'light');
161} 161}
162 162
163@include iro-execute {
164 $white: #fff;
165 $black: #000;
166
167 @include store((
168 --colors: (
169 --bg-hi: $white, // Darker background
170 --bg: $white, // Background
171 --bg-lo: $black, // Lighter background
172
173 --obj-hi: $black,
174 --obj: $black,
175
176 --fg-hi: $black, // Faint text
177 --fg: $black, // Text
178 --fg-lo: $black, // Strong text
179
180 --obj-shadow: transparent,
181 ),
182 ), 'print');
183}
184
163@each $breakpoint in map-keys($breakpoints) { 185@each $breakpoint in map-keys($breakpoints) {
164 @include media('<=#{$breakpoint}') { 186 @include media('<=#{$breakpoint}') {
165 @include store(( 187 @include store((