summaryrefslogtreecommitdiffstats
path: root/apps/accessibility/css/themedark.scss
blob: ecde4ec4c8adfa8eda2fad58e685a0a19e8a4c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// SCSS variables
$color-main-text: #d8d8d8;
$color-main-background: #181818;

$color-background-dark: lighten($color-main-background, 4%);
$color-background-darker: lighten($color-main-background, 8%);

$color-text-maxcontrast: darken($color-main-text, 30%);
$color-text-light: darken($color-main-text, 10%);
$color-text-lighter: darken($color-main-text, 20%);

$color-loading-light: #777;
$color-loading-dark: #ccc;

$color-box-shadow: rgba(darken($color-main-background, 70%), 0.5);

$color-border: lighten($color-main-background, 7%);
$color-border-dark: lighten($color-main-background, 14%);

#app-navigation > ul > li > a:first-child,
#app-navigation > ul > li > ul > li > a:first-child,
#expanddiv a {
	img {
		filter: invert(100%);
	}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {
	li {
		> button,
		> a,
		> .menuitem {
			> img {
				filter: invert(100%);
			}
		}
	}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu,
#header .menu {
	border: 1px solid var(--color-border);
}

// since svg icons are inverted, revert to white for the header
#header-right > * {
	[class^='icon-'], [class*=' icon-'] {
		filter: invert(100%);
	}
}