-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
81 lines (70 loc) · 2.09 KB
/
theme.css
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.theme-dark,
.theme-dark.aura-dark {
--background-primary: #15141b;
--background-secondary: #110f18;
--ribbon-background: #15141b;
--titlebar-background: var(--background-secondary);
--titlebar-background-focused: var(--background-secondary);
--code-background: var(--background-secondary);
--indentation-guide-color: #edecee;
--color-base-30: #61ffca;
}
.clickable-icon:hover, .clickable-icon:hover svg, .is-focused .titlebar-inner {
color: #61ffca;
}
/* File picker: Make current file purple! */
body:not(.is-grabbing) .nav-file-title.is-active:hover, body:not(.is-grabbing) .nav-folder-title.is-active:hover, .nav-file-title.is-active, .nav-folder-title.is-active {
color: #a277ff;
}
select,
.dropdown {
background-color: #3d375e7f;
}
select,
.dropdown:hover {
background-color: #af8aff7f;
}
.theme-dark.aura-soft {
--background-primary: #21202e;
--background-secondary: #1c1b22;
--ribbon-background: #21202e;
--titlebar-background: var(--background-secondary);
--titlebar-background-focused: var(--background-secondary);
--code-background: var(--background-secondary);
--indentation-guide-color: #edecee;
--color-base-30: #61ffca;
}
.clickable-icon.aura-soft:hover, .clickable-icon.aura-soft:hover svg, .is-focused.aura-soft .titlebar-inner.aura-soft {
color: #61ffca;
}
/* File picker: Make current file purple! */
body.aura-soft:not(.is-grabbing) .nav-file-title.is-active.aura-soft:hover, body.aura-soft:not(.is-grabbing) .nav-folder-title.is-active.aura-soft:hover, .nav-file-title.is-active.aura-soft, .nav-folder-title.is-active.aura-soft {
color: #a277ff;
}
select,
.dropdown.aura-soft {
background-color: #3d375e7f;
}
select,
.dropdown.aura-soft:hover {
background-color: #af8aff7f;
}
/* @settings
name: Aura Version
id: aura-theme-settings
settings:
-
id: aura-theme-dark
title: Softness
description: Select your preferred Aura variation
type: class-select
allowEmpty: false
default: aura-dark
options:
-
label: Aura Dark
value: aura-dark
-
label: Aura Soft Dark
value: aura-soft
*/