forked from
smokesignal.events/smokesignal
The smokesignal.events web application
1/**
2 * CSS Variables
3 *
4 * Custom CSS properties that extend Bulma's theming.
5 * These work with Bulma's dark mode support.
6 */
7
8:root {
9 /* Map colors */
10 --smokesignal-map-hex-color: #3273dc;
11 --smokesignal-map-hex-fill-opacity: 0.2;
12 --smokesignal-map-hex-stroke-width: 2px;
13
14 /* LFG colors */
15 --smokesignal-lfg-hex-color: #00d1b2;
16 --smokesignal-lfg-hex-fill-opacity: 0.3;
17
18 /* Heatmap color scale */
19 --smokesignal-heatmap-color-low: #3273dc;
20 --smokesignal-heatmap-color-mid: #8957e5;
21 --smokesignal-heatmap-color-high: #e74c3c;
22}