-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
56 lines (51 loc) · 2.11 KB
/
Copy pathjustfile
File metadata and controls
56 lines (51 loc) · 2.11 KB
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
default: write
_deploy_palette VARIANT \
background background_hl background_alt surface \
foreground foreground_strong foreground_muted \
accent accent_fg \
red green yellow orange magenta violet blue cyan \
shade border:
sed \
-e "s/@@BACKGROUND@@/{{background}}/g" \
-e "s/@@BACKGROUND_HL@@/{{background_hl}}/g" \
-e "s/@@BACKGROUND_ALT@@/{{background_alt}}/g" \
-e "s/@@SURFACE@@/{{surface}}/g" \
-e "s/@@FOREGROUND@@/{{foreground}}/g" \
-e "s/@@FOREGROUND_STRONG@@/{{foreground_strong}}/g" \
-e "s/@@FOREGROUND_MUTED@@/{{foreground_muted}}/g" \
-e "s/@@ACCENT@@/{{accent}}/g" \
-e "s/@@ACCENT_FG@@/{{accent_fg}}/g" \
-e "s/@@RED@@/{{red}}/g" \
-e "s/@@GREEN@@/{{green}}/g" \
-e "s/@@YELLOW@@/{{yellow}}/g" \
-e "s/@@ORANGE@@/{{orange}}/g" \
-e "s/@@MAGENTA@@/{{magenta}}/g" \
-e "s/@@VIOLET@@/{{violet}}/g" \
-e "s/@@BLUE@@/{{blue}}/g" \
-e "s/@@CYAN@@/{{cyan}}/g" \
-e "s/@@SHADE@@/{{shade}}/g" \
-e "s/@@BORDER@@/{{border}}/g" \
.Eldritch-@@VARIANT@@.css > themes/eldritch-{{VARIANT}}.css
write:
mkdir -p themes
# Cthulhu palette (default dark)
just _deploy_palette "cthulhu" \
"#212337" "#323449" "#454759" "#5b5c66" \
"#ebfafa" "#ebfafa" "#7081d0" \
"#37f499" "#212337" \
"#f16c75" "#37f499" "#f1fc79" "#f7c67f" "#f265b5" "#a48cf2" "#7081d0" "#04d1f9" \
"rgba(0,0,0,0.36)" "#323449"
# Abyss palette (darker dark)
just _deploy_palette "abyss" \
"#171928" "#252738" "#353746" "#474852" \
"#d8e6e6" "#d8e6e6" "#506299" \
"#2dcc82" "#171928" \
"#cc5860" "#2dcc82" "#ccd663" "#d4a666" "#d154a1" "#8b75d9" "#506299" "#0396b3" \
"rgba(0,0,0,0.40)" "#252738"
# Dusk palette (light variant)
just _deploy_palette "dusk" \
"#f0f3f4" "#e2e6e8" "#d5d9db" "#c9cbcd" \
"#1e2029" "#1e2029" "#5b73dc" \
"#38ff9f" "#f0f3f4" \
"#fb5b66" "#38ff9f" "#ffaf4d" "#ffaf4d" "#fb5bb6" "#8a69f7" "#5b73dc" "#0ad6ff" \
"rgba(0,0,0,0.07)" "#e2e6e8"