blob: f6567831f4cd10eea177427f791eac725caa22b8 (
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
|
#!/bin/sh
cat << EOF > "$XDG_CONFIG_HOME/BetterDiscord/themes/mode.theme.css"
/**
* @name mode
* @author mode
* @version 0
*/
/* AUTOMATICALLY GENERATED, DO NOT EDIT */
.theme-dark, .theme-light {
--background-primary: $bg;
--background-secondary: $bg;
--background-secondary-alt: $bg;
--text-primary: $fg;
--text-secondary: $color15;
--accent: $color4;
--accent-alt: $color12;
--error: $color1;
--error-alt: $color9;
}
.theme-dark {
--background-tertiary: $(mix_rgb $bg '#000000' 0.7);
}
.theme-light {
--background-tertiary: $bg;
}
EOF
|