Zsh und neue waybar hinzugefügt
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
--Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config
|
||||
--The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s
|
||||
--Then recompile and restart xmonad.
|
||||
|
||||
module Colors
|
||||
( wallpaper
|
||||
, background, foreground, cursor
|
||||
, color0, color1, color2, color3, color4, color5, color6, color7
|
||||
, color8, color9, color10, color11, color12, color13, color14, color15
|
||||
) where
|
||||
|
||||
-- Shell variables
|
||||
-- Generated by 'wal'
|
||||
wallpaper="/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
||||
|
||||
-- Special
|
||||
background="#101725"
|
||||
foreground="#c3c5c8"
|
||||
cursor="#c3c5c8"
|
||||
|
||||
-- Colors
|
||||
color0="#101725"
|
||||
color1="#4C4D4F"
|
||||
color2="#6C6A5F"
|
||||
color3="#C15E59"
|
||||
color4="#6F8F70"
|
||||
color5="#979274"
|
||||
color6="#DC9548"
|
||||
color7="#c3c5c8"
|
||||
color8="#5f6674"
|
||||
color9="#4C4D4F"
|
||||
color10="#6C6A5F"
|
||||
color11="#C15E59"
|
||||
color12="#6F8F70"
|
||||
color13="#979274"
|
||||
color14="#DC9548"
|
||||
color15="#c3c5c8"
|
||||
+16
-16
@@ -1,16 +1,16 @@
|
||||
#0f0d16
|
||||
#98364A
|
||||
#C6394B
|
||||
#A84859
|
||||
#DE5F67
|
||||
#F3877C
|
||||
#DA7C82
|
||||
#f1c3bf
|
||||
#a88885
|
||||
#98364A
|
||||
#C6394B
|
||||
#A84859
|
||||
#DE5F67
|
||||
#F3877C
|
||||
#DA7C82
|
||||
#f1c3bf
|
||||
#101725
|
||||
#4C4D4F
|
||||
#6C6A5F
|
||||
#C15E59
|
||||
#6F8F70
|
||||
#979274
|
||||
#DC9548
|
||||
#c3c5c8
|
||||
#5f6674
|
||||
#4C4D4F
|
||||
#6C6A5F
|
||||
#C15E59
|
||||
#6F8F70
|
||||
#979274
|
||||
#DC9548
|
||||
#c3c5c8
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
colors:
|
||||
|
||||
primary:
|
||||
background: "#101725"
|
||||
foreground: "#c3c5c8"
|
||||
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
|
||||
search:
|
||||
matches:
|
||||
foreground: '#101725'
|
||||
background: '#c3c5c8'
|
||||
focused_match:
|
||||
foreground: CellBackground
|
||||
background: CellForeground
|
||||
|
||||
line_indicator:
|
||||
foreground: None
|
||||
background: None
|
||||
|
||||
footer_bar:
|
||||
foreground: '#5f6674'
|
||||
background: '#c3c5c8'
|
||||
|
||||
selection:
|
||||
text: CellBackground
|
||||
background: CellForeground
|
||||
|
||||
normal:
|
||||
black: "#101725"
|
||||
red: "#4C4D4F"
|
||||
green: "#6C6A5F"
|
||||
yellow: "#C15E59"
|
||||
blue: "#6F8F70"
|
||||
magenta: "#979274"
|
||||
cyan: "#DC9548"
|
||||
white: "#c3c5c8"
|
||||
|
||||
bright:
|
||||
black: "#5f6674"
|
||||
red: "#4C4D4F"
|
||||
green: "#6C6A5F"
|
||||
yellow: "#C15E59"
|
||||
blue: "#6F8F70"
|
||||
magenta: "#979274"
|
||||
cyan: "#DC9548"
|
||||
white: "#c3c5c8"
|
||||
@@ -0,0 +1,62 @@
|
||||
[colors.primary]
|
||||
background = "#101725"
|
||||
foreground = "#c3c5c8"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#101725"
|
||||
cursor = "#c3c5c8"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#101725"
|
||||
cursor = "#c3c5c8"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#101725"
|
||||
background = "#c3c5c8"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "CellBackground"
|
||||
background = "CellForeground"
|
||||
|
||||
[colors.line_indicator]
|
||||
foreground = "None"
|
||||
background = "None"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#5f6674"
|
||||
background = "#c3c5c8"
|
||||
|
||||
[colors.selection]
|
||||
text = "CellBackground"
|
||||
background = "CellForeground"
|
||||
|
||||
[colors.normal]
|
||||
black = "#101725"
|
||||
red = "#4C4D4F"
|
||||
green = "#6C6A5F"
|
||||
yellow = "#C15E59"
|
||||
blue = "#6F8F70"
|
||||
magenta = "#979274"
|
||||
cyan = "#DC9548"
|
||||
white = "#c3c5c8"
|
||||
|
||||
[colors.bright]
|
||||
black = "#5f6674"
|
||||
red = "#4C4D4F"
|
||||
green = "#6C6A5F"
|
||||
yellow = "#C15E59"
|
||||
blue = "#6F8F70"
|
||||
magenta = "#979274"
|
||||
cyan = "#DC9548"
|
||||
white = "#c3c5c8"
|
||||
|
||||
[colors.dim]
|
||||
black = "#c3c5c8"
|
||||
red = "#4C4D4F"
|
||||
green = "#979274"
|
||||
yellow = "#C15E59"
|
||||
blue = "#6F8F70"
|
||||
magenta = "#6C6A5F"
|
||||
cyan = "#DC9548"
|
||||
white = "#5f6674"
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
colors:
|
||||
|
||||
primary:
|
||||
background: "#101725"
|
||||
foreground: "#c3c5c8"
|
||||
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
|
||||
search:
|
||||
matches:
|
||||
foreground: '#101725'
|
||||
background: '#c3c5c8'
|
||||
focused_match:
|
||||
foreground: CellBackground
|
||||
background: CellForeground
|
||||
|
||||
line_indicator:
|
||||
foreground: None
|
||||
background: None
|
||||
|
||||
footer_bar:
|
||||
foreground: '#5f6674'
|
||||
background: '#c3c5c8'
|
||||
|
||||
selection:
|
||||
text: CellBackground
|
||||
background: CellForeground
|
||||
|
||||
normal:
|
||||
black: "#101725"
|
||||
red: "#4C4D4F"
|
||||
green: "#6C6A5F"
|
||||
yellow: "#C15E59"
|
||||
blue: "#6F8F70"
|
||||
magenta: "#979274"
|
||||
cyan: "#DC9548"
|
||||
white: "#c3c5c8"
|
||||
|
||||
bright:
|
||||
black: "#5f6674"
|
||||
red: "#4C4D4F"
|
||||
green: "#6C6A5F"
|
||||
yellow: "#C15E59"
|
||||
blue: "#6F8F70"
|
||||
magenta: "#979274"
|
||||
cyan: "#DC9548"
|
||||
white: "#c3c5c8"
|
||||
|
||||
dim:
|
||||
black: "#c3c5c8"
|
||||
red: "#4C4D4F"
|
||||
green: "#979274"
|
||||
yellow: "#C15E59"
|
||||
blue: "#6F8F70"
|
||||
magenta: "#6C6A5F"
|
||||
cyan: "#DC9548"
|
||||
white: "#5f6674"
|
||||
@@ -0,0 +1,19 @@
|
||||
[colors]
|
||||
background=101725
|
||||
foreground=c3c5c8
|
||||
regular0=101725
|
||||
regular1=4C4D4F
|
||||
regular2=6C6A5F
|
||||
regular3=C15E59
|
||||
regular4=6F8F70
|
||||
regular5=979274
|
||||
regular6=DC9548
|
||||
regular7=c3c5c8
|
||||
bright0=5f6674
|
||||
bright1=4C4D4F
|
||||
bright2=6C6A5F
|
||||
bright3=C15E59
|
||||
bright4=6F8F70
|
||||
bright5=979274
|
||||
bright6=DC9548
|
||||
bright7=c3c5c8
|
||||
@@ -0,0 +1,11 @@
|
||||
[colors]
|
||||
background=101725ff
|
||||
prompt=c3c5c8ff
|
||||
text=c3c5c8ff
|
||||
placeholder=c3c5c8ff
|
||||
input=c3c5c8ff
|
||||
match=c3c5c8ff
|
||||
selection=4C4D4Fff
|
||||
selection-text=101725ff
|
||||
selection-match=c3c5c8ff
|
||||
border=4C4D4Fff
|
||||
@@ -0,0 +1,21 @@
|
||||
$wallpaper = /home/zaske/Pictures/cyberpunk_GruvBox.jpg
|
||||
|
||||
$foreground = rgba(195,197,200,1.0)
|
||||
$background = rgba(16,23,37,1.0)
|
||||
|
||||
$color0 = rgba(16,23,37,1.0)
|
||||
$color1 = rgba(76,77,79,1.0)
|
||||
$color2 = rgba(108,106,95,1.0)
|
||||
$color3 = rgba(193,94,89,1.0)
|
||||
$color4 = rgba(111,143,112,1.0)
|
||||
$color5 = rgba(151,146,116,1.0)
|
||||
$color6 = rgba(220,149,72,1.0)
|
||||
$color7 = rgba(195,197,200,1.0)
|
||||
$color8 = rgba(95,102,116,1.0)
|
||||
$color9 = rgba(76,77,79,1.0)
|
||||
$color10 = rgba(108,106,95,1.0)
|
||||
$color11 = rgba(193,94,89,1.0)
|
||||
$color12 = rgba(111,143,112,1.0)
|
||||
$color13 = rgba(151,146,116,1.0)
|
||||
$color14 = rgba(220,149,72,1.0)
|
||||
$color15 = rgba(195,197,200,1.0)
|
||||
+29
-19
@@ -1,20 +1,30 @@
|
||||
foreground #f1c3bf
|
||||
background #0f0d16
|
||||
cursor #f1c3bf
|
||||
foreground #c3c5c8
|
||||
background #101725
|
||||
background_opacity 1.0
|
||||
cursor #c3c5c8
|
||||
|
||||
color0 #0f0d16
|
||||
color8 #a88885
|
||||
color1 #98364A
|
||||
color9 #98364A
|
||||
color2 #C6394B
|
||||
color10 #C6394B
|
||||
color3 #A84859
|
||||
color11 #A84859
|
||||
color4 #DE5F67
|
||||
color12 #DE5F67
|
||||
color5 #F3877C
|
||||
color13 #F3877C
|
||||
color6 #DA7C82
|
||||
color14 #DA7C82
|
||||
color7 #f1c3bf
|
||||
color15 #f1c3bf
|
||||
active_tab_foreground #101725
|
||||
active_tab_background #c3c5c8
|
||||
inactive_tab_foreground #c3c5c8
|
||||
inactive_tab_background #101725
|
||||
|
||||
active_border_color #c3c5c8
|
||||
inactive_border_color #101725
|
||||
bell_border_color #4C4D4F
|
||||
|
||||
color0 #101725
|
||||
color8 #5f6674
|
||||
color1 #4C4D4F
|
||||
color9 #4C4D4F
|
||||
color2 #6C6A5F
|
||||
color10 #6C6A5F
|
||||
color3 #C15E59
|
||||
color11 #C15E59
|
||||
color4 #6F8F70
|
||||
color12 #6F8F70
|
||||
color5 #979274
|
||||
color13 #979274
|
||||
color6 #DC9548
|
||||
color14 #DC9548
|
||||
color7 #c3c5c8
|
||||
color15 #c3c5c8
|
||||
|
||||
@@ -1,62 +1,62 @@
|
||||
[Background]
|
||||
Color=15,13,22
|
||||
Color=16,23,37
|
||||
|
||||
[BackgroundIntense]
|
||||
Color=15,13,22
|
||||
Color=16,23,37
|
||||
|
||||
[Color0]
|
||||
Color=15,13,22
|
||||
Color=16,23,37
|
||||
|
||||
[Color0Intense]
|
||||
Color=168,136,133
|
||||
Color=95,102,116
|
||||
|
||||
[Color1]
|
||||
Color=152,54,74
|
||||
Color=76,77,79
|
||||
|
||||
[Color1Intense]
|
||||
Color=152,54,74
|
||||
Color=76,77,79
|
||||
|
||||
[Color2]
|
||||
Color=198,57,75
|
||||
Color=108,106,95
|
||||
|
||||
[Color2Intense]
|
||||
Color=198,57,75
|
||||
Color=108,106,95
|
||||
|
||||
[Color3]
|
||||
Color=168,72,89
|
||||
Color=193,94,89
|
||||
|
||||
[Color3Intense]
|
||||
Color=168,72,89
|
||||
Color=193,94,89
|
||||
|
||||
[Color4]
|
||||
Color=222,95,103
|
||||
Color=111,143,112
|
||||
|
||||
[Color4Intense]
|
||||
Color=222,95,103
|
||||
Color=111,143,112
|
||||
|
||||
[Color5]
|
||||
Color=243,135,124
|
||||
Color=151,146,116
|
||||
|
||||
[Color5Intense]
|
||||
Color=243,135,124
|
||||
Color=151,146,116
|
||||
|
||||
[Color6]
|
||||
Color=218,124,130
|
||||
Color=220,149,72
|
||||
|
||||
[Color6Intense]
|
||||
Color=218,124,130
|
||||
Color=220,149,72
|
||||
|
||||
[Color7]
|
||||
Color=241,195,191
|
||||
Color=195,197,200
|
||||
|
||||
[Color7Intense]
|
||||
Color=241,195,191
|
||||
Color=195,197,200
|
||||
|
||||
[Foreground]
|
||||
Color=241,195,191
|
||||
Color=195,197,200
|
||||
|
||||
[ForegroundIntense]
|
||||
Color=241,195,191
|
||||
Color=195,197,200
|
||||
|
||||
[General]
|
||||
Description=Colorscheme generated by wal
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
border_width: 2,
|
||||
margin: [4, 4],
|
||||
default_border_color: "#101725",
|
||||
floating_border_color: "#DC9548",
|
||||
focused_border_color: "#c3c5c8",
|
||||
background_color: "#101725",
|
||||
)
|
||||
@@ -0,0 +1,3 @@
|
||||
background-color=#101725
|
||||
text-color=#c3c5c8
|
||||
border-color=#4C4D4F
|
||||
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* pywal theme template for notepadqq by threadreaper
|
||||
* https://github.com/threadreaper
|
||||
*/
|
||||
|
||||
.cm-s-nqqwal .CodeMirror-gutters { background: #101725 !important; }
|
||||
.cm-s-nqqwal .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { color: #c3c5c8; }
|
||||
.cm-s-nqqwal .CodeMirror-cursor { border-left: 1px solid #c3c5c8; background-color: rgba(220,149,72,0.4)}
|
||||
.cm-s-nqqwal { background-color: #101725; color: #c3c5c8; }
|
||||
.cm-s-nqqwal span.cm-builtin { color: #6C6A5F; font-weight: bold; }
|
||||
.cm-s-nqqwal span.cm-comment { color: #5f6674; }
|
||||
.cm-s-nqqwal span.cm-keyword { color: #C15E59; font-weight: bold; }
|
||||
.cm-s-nqqwal span.cm-atom { color: #6F8F70; }
|
||||
.cm-s-nqqwal span.cm-def { color: #979274; }
|
||||
.cm-s-nqqwal span.cm-variable { color: #DC9548; }
|
||||
.cm-s-nqqwal span.cm-variable-2 { color: #979274; }
|
||||
.cm-s-nqqwal span.cm-string { color: #6C6A5F; }
|
||||
.cm-s-nqqwal span.cm-string-2 { color: #6C6A5F; }
|
||||
.cm-s-nqqwal span.cm-number { color: #979274; }
|
||||
.cm-s-nqqwal span.cm-tag { color: #C15E59; }
|
||||
.cm-s-nqqwal span.cm-property { color: #DC9548; }
|
||||
.cm-s-nqqwal span.cm-attribute { color: #DC9548; }
|
||||
.cm-s-nqqwal span.cm-qualifier { color: #6F8F70; }
|
||||
.cm-s-nqqwal span.cm-meta { color: #979274; }
|
||||
.cm-s-nqqwal span.cm-header { color: #C15E59; }
|
||||
.cm-s-nqqwal span.cm-operator { color: #C15E59; }
|
||||
.cm-s-nqqwal span.CodeMirror-matchingbracket { box-sizing: border-box; background: transparent; border-bottom: 1px solid; }
|
||||
.cm-s-nqqwal span.CodeMirror-nonmatchingbracket { border-bottom: 1px solid; background: none; }
|
||||
.cm-s-nqqwal .CodeMirror-activeline-background { background: rgba(151,146,116,0.4); }
|
||||
.cm-s-nqqwal div.CodeMirror-selected { background: #C15E59; }
|
||||
.cm-s-nqqwal .CodeMirror-focused div.CodeMirror-selected { background: #101725); }
|
||||
+12
-12
@@ -1,16 +1,16 @@
|
||||
NAME=wal
|
||||
BG=0f0d16
|
||||
FG=f1c3bf
|
||||
MENU_BG=0f0d16
|
||||
MENU_FG=f1c3bf
|
||||
SEL_BG=98364A
|
||||
SEL_FG=0f0d16
|
||||
TXT_BG=0f0d16
|
||||
TXT_FG=f1c3bf
|
||||
BTN_BG=C6394B
|
||||
BTN_FG=f1c3bf
|
||||
HDR_BTN_BG=A84859
|
||||
HDR_BTN_FG=f1c3bf
|
||||
BG=101725
|
||||
FG=c3c5c8
|
||||
MENU_BG=101725
|
||||
MENU_FG=c3c5c8
|
||||
SEL_BG=4C4D4F
|
||||
SEL_FG=101725
|
||||
TXT_BG=101725
|
||||
TXT_FG=c3c5c8
|
||||
BTN_BG=6C6A5F
|
||||
BTN_FG=c3c5c8
|
||||
HDR_BTN_BG=C15E59
|
||||
HDR_BTN_FG=c3c5c8
|
||||
GTK3_GENERATE_DARK=True
|
||||
ROUNDNESS=0
|
||||
SPACING=3
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
background = d9101725
|
||||
background-alt = 5f6674
|
||||
foreground = c3c5c8
|
||||
foreground-alt = c3c5c8
|
||||
primary = 4C4D4F
|
||||
secondary = 6C6A5F
|
||||
alert = C15E59
|
||||
disabled = c3c5c8
|
||||
+22
-22
@@ -1,26 +1,26 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\wal]
|
||||
"Colour0"="241,195,191" ; Default Foreground
|
||||
"Colour1"="241,195,191" ; Default Bold Foreground
|
||||
"Colour2"="15,13,22" ; Default Background
|
||||
"Colour3"="15,13,22" ; Default Bold Background
|
||||
"Colour4"="15,13,22" ; Cursor Text
|
||||
"Colour5"="241,195,191" ; Cursor Color
|
||||
"Colour6"="15,13,22" ; ANSI Black
|
||||
"Colour7"="168,136,133" ; ANSI Black Bold
|
||||
"Colour8"="152,54,74" ; ANSI Red
|
||||
"Colour9"="152,54,74" ; ANSI Red Bold
|
||||
"Colour10"="198,57,75" ; ANSI Green
|
||||
"Colour11"="198,57,75" ; ANSI Green Bold
|
||||
"Colour12"="168,72,89" ; ANSI Yellow
|
||||
"Colour13"="168,72,89" ; ANSI Yellow Bold
|
||||
"Colour14"="222,95,103" ; ANSI Blue
|
||||
"Colour15"="222,95,103" ; ANSI Blue Bold
|
||||
"Colour16"="243,135,124" ; ANSI Magenta
|
||||
"Colour17"="243,135,124" ; ANSI Magenta Bold
|
||||
"Colour18"="218,124,130" ; ANSI Cyan
|
||||
"Colour19"="218,124,130" ; ANSI Cyan Bold
|
||||
"Colour20"="241,195,191" ; ANSI White
|
||||
"Colour21"="241,195,191" ; ANSI White Bold
|
||||
"Colour0"="195,197,200" ; Default Foreground
|
||||
"Colour1"="195,197,200" ; Default Bold Foreground
|
||||
"Colour2"="16,23,37" ; Default Background
|
||||
"Colour3"="16,23,37" ; Default Bold Background
|
||||
"Colour4"="16,23,37" ; Cursor Text
|
||||
"Colour5"="195,197,200" ; Cursor Color
|
||||
"Colour6"="16,23,37" ; ANSI Black
|
||||
"Colour7"="95,102,116" ; ANSI Black Bold
|
||||
"Colour8"="76,77,79" ; ANSI Red
|
||||
"Colour9"="76,77,79" ; ANSI Red Bold
|
||||
"Colour10"="108,106,95" ; ANSI Green
|
||||
"Colour11"="108,106,95" ; ANSI Green Bold
|
||||
"Colour12"="193,94,89" ; ANSI Yellow
|
||||
"Colour13"="193,94,89" ; ANSI Yellow Bold
|
||||
"Colour14"="111,143,112" ; ANSI Blue
|
||||
"Colour15"="111,143,112" ; ANSI Blue Bold
|
||||
"Colour16"="151,146,116" ; ANSI Magenta
|
||||
"Colour17"="151,146,116" ; ANSI Magenta Bold
|
||||
"Colour18"="220,149,72" ; ANSI Cyan
|
||||
"Colour19"="220,149,72" ; ANSI Cyan Bold
|
||||
"Colour20"="195,197,200" ; ANSI White
|
||||
"Colour21"="195,197,200" ; ANSI White Bold
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
rgui_entry_normal_color = "0xFF4C4D4F"
|
||||
rgui_entry_hover_color = "0xFFDC9548"
|
||||
rgui_title_color = "0xFFc3c5c8"
|
||||
rgui_bg_dark_color = "0xFF101725"
|
||||
rgui_bg_light_color = "0xFF101725"
|
||||
rgui_border_dark_color = "0xFF5f6674"
|
||||
rgui_border_light_color = "0xFF5f6674"
|
||||
rgui_particle_color = "0xFF6F8F70"
|
||||
@@ -0,0 +1,16 @@
|
||||
16,23,37
|
||||
76,77,79
|
||||
108,106,95
|
||||
193,94,89
|
||||
111,143,112
|
||||
151,146,116
|
||||
220,149,72
|
||||
195,197,200
|
||||
95,102,116
|
||||
76,77,79
|
||||
108,106,95
|
||||
193,94,89
|
||||
111,143,112
|
||||
151,146,116
|
||||
220,149,72
|
||||
195,197,200
|
||||
@@ -0,0 +1,32 @@
|
||||
[colors]
|
||||
background = '#1017258e'
|
||||
black = '#101725'
|
||||
blue = '#4C4D4F'
|
||||
cursor = '#c3c5c8'
|
||||
cyan = '#6C6A5F'
|
||||
foreground = '#c3c5c8'
|
||||
green = '#C15E59'
|
||||
magenta = '#6F8F70'
|
||||
red = '#979274'
|
||||
tabs = '#c3c5c8'
|
||||
tabs-active = '#DC9548'
|
||||
white = '#c3c5c8'
|
||||
yellow = '#c3c5c8'
|
||||
dim-black = '#1017258e'
|
||||
dim-blue = '#4C4D4F8e'
|
||||
dim-cyan = '#6C6A5F8e'
|
||||
dim-foreground = '#c3c5c88e'
|
||||
dim-green = '#C15E598e'
|
||||
dim-magenta = '#6F8F708e'
|
||||
dim-red = '#9792748e'
|
||||
dim-white = '#DC95488e'
|
||||
dim-yellow = '#c3c5c88e'
|
||||
light-black = '#4C4D4F'
|
||||
light-blue = '#6C6A5F'
|
||||
light-cyan = '#C15E59'
|
||||
light-foreground = '#6F8F70'
|
||||
light-green = '#979274'
|
||||
light-magenta = '#DC9548'
|
||||
light-red = '#c3c5c8'
|
||||
light-white = '#4C4D4F'
|
||||
light-yellow = '#6C6A5F'
|
||||
@@ -1,9 +1,9 @@
|
||||
* {
|
||||
active-background: #C6394B;
|
||||
active-background: #6C6A5F;
|
||||
active-foreground: @foreground;
|
||||
normal-background: @background;
|
||||
normal-foreground: @foreground;
|
||||
urgent-background: #98364A;
|
||||
urgent-background: #4C4D4F;
|
||||
urgent-foreground: @foreground;
|
||||
|
||||
alternate-active-background: @background;
|
||||
@@ -13,16 +13,16 @@
|
||||
alternate-urgent-background: @background;
|
||||
alternate-urgent-foreground: @foreground;
|
||||
|
||||
selected-active-background: #98364A;
|
||||
selected-active-background: #4C4D4F;
|
||||
selected-active-foreground: @foreground;
|
||||
selected-normal-background: #C6394B;
|
||||
selected-normal-background: #6C6A5F;
|
||||
selected-normal-foreground: @foreground;
|
||||
selected-urgent-background: #A84859;
|
||||
selected-urgent-background: #C15E59;
|
||||
selected-urgent-foreground: @foreground;
|
||||
|
||||
background-color: @background;
|
||||
background: #0f0d16;
|
||||
foreground: #f1c3bf;
|
||||
background: #101725;
|
||||
foreground: #c3c5c8;
|
||||
border-color: @background;
|
||||
spacing: 2;
|
||||
}
|
||||
@@ -73,6 +73,11 @@
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
#element-text, element-icon {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
#element.normal.normal {
|
||||
background-color: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
* {
|
||||
active-background: #C6394B;
|
||||
active-background: #6C6A5F;
|
||||
active-foreground: @foreground;
|
||||
normal-background: @background;
|
||||
normal-foreground: @foreground;
|
||||
urgent-background: #98364A;
|
||||
urgent-background: #4C4D4F;
|
||||
urgent-foreground: @foreground;
|
||||
|
||||
alternate-active-background: @background;
|
||||
@@ -13,16 +13,16 @@
|
||||
alternate-urgent-background: @background;
|
||||
alternate-urgent-foreground: @foreground;
|
||||
|
||||
selected-active-background: #98364A;
|
||||
selected-active-background: #4C4D4F;
|
||||
selected-active-foreground: @foreground;
|
||||
selected-normal-background: #C6394B;
|
||||
selected-normal-background: #6C6A5F;
|
||||
selected-normal-foreground: @foreground;
|
||||
selected-urgent-background: #A84859;
|
||||
selected-urgent-background: #C15E59;
|
||||
selected-urgent-foreground: @foreground;
|
||||
|
||||
background-color: @background;
|
||||
background: #f1c3bf;
|
||||
foreground: #0f0d16;
|
||||
background: #c3c5c8;
|
||||
foreground: #101725;
|
||||
border-color: @background;
|
||||
spacing: 2;
|
||||
}
|
||||
@@ -73,6 +73,11 @@
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
#element-text, element-icon {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
#element.normal.normal {
|
||||
background-color: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"cursor": "#f1c3bf",
|
||||
"number": "#f1c3bf",
|
||||
"parens": "#F3877C",
|
||||
"result": "#DE5F67",
|
||||
"comment": "#a88885",
|
||||
"matched": "#DE5F67",
|
||||
"function": "#98364A",
|
||||
"operator": "#A84859",
|
||||
"variable": "#C6394B",
|
||||
"scrollbar": "#A84859",
|
||||
"separator": "#A84859",
|
||||
"background": "#0f0d16",
|
||||
"editorbackground": "#0f0d16"
|
||||
"cursor": "#c3c5c8",
|
||||
"number": "#c3c5c8",
|
||||
"parens": "#979274",
|
||||
"result": "#6F8F70",
|
||||
"comment": "#5f6674",
|
||||
"matched": "#6F8F70",
|
||||
"function": "#4C4D4F",
|
||||
"operator": "#C15E59",
|
||||
"variable": "#6C6A5F",
|
||||
"scrollbar": "#C15E59",
|
||||
"separator": "#C15E59",
|
||||
"background": "#101725",
|
||||
"editorbackground": "#101725"
|
||||
}
|
||||
|
||||
+19
-19
@@ -1,21 +1,21 @@
|
||||
set $wallpaper /home/Zaske/Images/red_mountain.jpg
|
||||
set $wallpaper /home/zaske/Pictures/cyberpunk_GruvBox.jpg
|
||||
|
||||
set $background #0f0d16
|
||||
set $foreground #f1c3bf
|
||||
set $background #101725
|
||||
set $foreground #c3c5c8
|
||||
|
||||
set $color0 #0f0d16
|
||||
set $color1 #98364A
|
||||
set $color2 #C6394B
|
||||
set $color3 #A84859
|
||||
set $color4 #DE5F67
|
||||
set $color5 #F3877C
|
||||
set $color6 #DA7C82
|
||||
set $color7 #f1c3bf
|
||||
set $color8 #a88885
|
||||
set $color9 #98364A
|
||||
set $color10 #C6394B
|
||||
set $color11 #A84859
|
||||
set $color12 #DE5F67
|
||||
set $color13 #F3877C
|
||||
set $color14 #DA7C82
|
||||
set $color15 #f1c3bf
|
||||
set $color0 #101725
|
||||
set $color1 #4C4D4F
|
||||
set $color2 #6C6A5F
|
||||
set $color3 #C15E59
|
||||
set $color4 #6F8F70
|
||||
set $color5 #979274
|
||||
set $color6 #DC9548
|
||||
set $color7 #c3c5c8
|
||||
set $color8 #5f6674
|
||||
set $color9 #4C4D4F
|
||||
set $color10 #6C6A5F
|
||||
set $color11 #C15E59
|
||||
set $color12 #6F8F70
|
||||
set $color13 #979274
|
||||
set $color14 #DC9548
|
||||
set $color15 #c3c5c8
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
module.exports.colors = {
|
||||
dark: {
|
||||
accent0: "#101725",
|
||||
accent1: "#4C4D4F",
|
||||
accent2: "#6C6A5F",
|
||||
accent3: "#C15E59",
|
||||
accent4: "#6F8F70",
|
||||
accent5: "#979274",
|
||||
accent6: "#c3c5c8",
|
||||
accent7: "#c3c5c8",
|
||||
shade0: "#101725",
|
||||
shade1: "#4C4D4F",
|
||||
shade2: "#6C6A5F",
|
||||
shade3: "#C15E59",
|
||||
shade4: "#6F8F70",
|
||||
shade5: "#979274",
|
||||
shade6: "#DC9548",
|
||||
shade7: "#c3c5c8"
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"background-color": "#101725",
|
||||
"badge-color": "#c3c5c8",
|
||||
"bold-color": "#c3c5c8",
|
||||
"comment": "",
|
||||
"cursor-background-color": "#101725",
|
||||
"cursor-foreground-color": "#c3c5c8",
|
||||
"foreground-color": "#c3c5c8",
|
||||
"highlight-background-color": "#101725",
|
||||
"highlight-foreground-color": "#c3c5c8",
|
||||
"name": "wal export",
|
||||
"palette": [
|
||||
"#101725",
|
||||
"#4C4D4F",
|
||||
"#6C6A5F",
|
||||
"#C15E59",
|
||||
"#6F8F70",
|
||||
"#979274",
|
||||
"#DC9548",
|
||||
"#c3c5c8",
|
||||
"#5f6674",
|
||||
"#4C4D4F",
|
||||
"#6C6A5F",
|
||||
"#C15E59",
|
||||
"#6F8F70",
|
||||
"#979274",
|
||||
"#DC9548",
|
||||
"#c3c5c8"
|
||||
],
|
||||
"use-badge-color": false,
|
||||
"use-bold-color": false,
|
||||
"use-cursor-color": false,
|
||||
"use-highlight-color": false,
|
||||
"use-theme-colors": false
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
background-color = 101725
|
||||
border-color = 4C4D4F
|
||||
selection-color = 4C4D4F
|
||||
text-color = c3c5c8
|
||||
+16
-16
@@ -1,19 +1,19 @@
|
||||
#!/bin/sh
|
||||
[ "${TERM:-none}" = "linux" ] && \
|
||||
printf '%b' '\e]P00f0d16
|
||||
\e]P198364A
|
||||
\e]P2C6394B
|
||||
\e]P3A84859
|
||||
\e]P4DE5F67
|
||||
\e]P5F3877C
|
||||
\e]P6DA7C82
|
||||
\e]P7f1c3bf
|
||||
\e]P8a88885
|
||||
\e]P998364A
|
||||
\e]PAC6394B
|
||||
\e]PBA84859
|
||||
\e]PCDE5F67
|
||||
\e]PDF3877C
|
||||
\e]PEDA7C82
|
||||
\e]PFf1c3bf
|
||||
printf '%b' '\e]P0101725
|
||||
\e]P14C4D4F
|
||||
\e]P26C6A5F
|
||||
\e]P3C15E59
|
||||
\e]P46F8F70
|
||||
\e]P5979274
|
||||
\e]P6DC9548
|
||||
\e]P7c3c5c8
|
||||
\e]P85f6674
|
||||
\e]P94C4D4F
|
||||
\e]PA6C6A5F
|
||||
\e]PBC15E59
|
||||
\e]PC6F8F70
|
||||
\e]PD979274
|
||||
\e]PEDC9548
|
||||
\e]PFc3c5c8
|
||||
\ec'
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"editor.tokenColorCustomizations": {
|
||||
"functions": "#4C4D4F",
|
||||
"keywords": "#6C6A5F",
|
||||
"numbers": "#C15E59",
|
||||
"strings": "#6F8F70",
|
||||
"types": "#979274",
|
||||
"variables": "#DC9548",
|
||||
"comments": "#5f6674"
|
||||
},
|
||||
"workbench.colorCustomizations": {
|
||||
"editor.background": "#101725"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
static const char *colors[SchemeLast][2] = {
|
||||
/* fg bg */
|
||||
[SchemeNorm] = { "#f1c3bf", "#0f0d16" },
|
||||
[SchemeSel] = { "#f1c3bf", "#98364A" },
|
||||
[SchemeOut] = { "#f1c3bf", "#DA7C82" },
|
||||
[SchemeNorm] = { "#c3c5c8", "#101725" },
|
||||
[SchemeSel] = { "#c3c5c8", "#4C4D4F" },
|
||||
[SchemeOut] = { "#c3c5c8", "#DC9548" },
|
||||
};
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
/* Taken from https://github.com/djpohly/dwl/issues/466 */
|
||||
#define COLOR(hex) { ((hex >> 24) & 0xFF) / 255.0f, \
|
||||
((hex >> 16) & 0xFF) / 255.0f, \
|
||||
((hex >> 8) & 0xFF) / 255.0f, \
|
||||
(hex & 0xFF) / 255.0f }
|
||||
|
||||
static const float rootcolor[] = COLOR(0x101725ff);
|
||||
static uint32_t colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { 0xc3c5c8ff, 0x101725ff, 0x5f6674ff },
|
||||
[SchemeSel] = { 0xc3c5c8ff, 0x6C6A5Fff, 0x4C4D4Fff },
|
||||
[SchemeUrg] = { 0xc3c5c8ff, 0x4C4D4Fff, 0x6C6A5Fff },
|
||||
};
|
||||
@@ -0,0 +1,18 @@
|
||||
static const char norm_fg[] = "#c3c5c8";
|
||||
static const char norm_bg[] = "#101725";
|
||||
static const char norm_border[] = "#5f6674";
|
||||
|
||||
static const char sel_fg[] = "#c3c5c8";
|
||||
static const char sel_bg[] = "#6C6A5F";
|
||||
static const char sel_border[] = "#c3c5c8";
|
||||
|
||||
static const char urg_fg[] = "#c3c5c8";
|
||||
static const char urg_bg[] = "#4C4D4F";
|
||||
static const char urg_border[] = "#4C4D4F";
|
||||
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
|
||||
[SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
|
||||
[SchemeUrg] = { urg_fg, urg_bg, urg_border },
|
||||
};
|
||||
+6
-11
@@ -1,18 +1,13 @@
|
||||
static const char norm_fg[] = "#f1c3bf";
|
||||
static const char norm_bg[] = "#0f0d16";
|
||||
static const char norm_border[] = "#a88885";
|
||||
static const char norm_fg[] = "#c3c5c8";
|
||||
static const char norm_bg[] = "#101725";
|
||||
static const char norm_border[] = "#5f6674";
|
||||
|
||||
static const char sel_fg[] = "#f1c3bf";
|
||||
static const char sel_bg[] = "#C6394B";
|
||||
static const char sel_border[] = "#f1c3bf";
|
||||
|
||||
static const char urg_fg[] = "#f1c3bf";
|
||||
static const char urg_bg[] = "#98364A";
|
||||
static const char urg_border[] = "#98364A";
|
||||
static const char sel_fg[] = "#c3c5c8";
|
||||
static const char sel_bg[] = "#4C4D4F";
|
||||
static const char sel_border[] = "#c3c5c8";
|
||||
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
|
||||
[SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
|
||||
[SchemeUrg] = { urg_fg, urg_bg, urg_border },
|
||||
};
|
||||
|
||||
+19
-19
@@ -1,29 +1,29 @@
|
||||
const char *colorname[] = {
|
||||
|
||||
/* 8 normal colors */
|
||||
[0] = "#0f0d16", /* black */
|
||||
[1] = "#98364A", /* red */
|
||||
[2] = "#C6394B", /* green */
|
||||
[3] = "#A84859", /* yellow */
|
||||
[4] = "#DE5F67", /* blue */
|
||||
[5] = "#F3877C", /* magenta */
|
||||
[6] = "#DA7C82", /* cyan */
|
||||
[7] = "#f1c3bf", /* white */
|
||||
[0] = "#101725", /* black */
|
||||
[1] = "#4C4D4F", /* red */
|
||||
[2] = "#6C6A5F", /* green */
|
||||
[3] = "#C15E59", /* yellow */
|
||||
[4] = "#6F8F70", /* blue */
|
||||
[5] = "#979274", /* magenta */
|
||||
[6] = "#DC9548", /* cyan */
|
||||
[7] = "#c3c5c8", /* white */
|
||||
|
||||
/* 8 bright colors */
|
||||
[8] = "#a88885", /* black */
|
||||
[9] = "#98364A", /* red */
|
||||
[10] = "#C6394B", /* green */
|
||||
[11] = "#A84859", /* yellow */
|
||||
[12] = "#DE5F67", /* blue */
|
||||
[13] = "#F3877C", /* magenta */
|
||||
[14] = "#DA7C82", /* cyan */
|
||||
[15] = "#f1c3bf", /* white */
|
||||
[8] = "#5f6674", /* black */
|
||||
[9] = "#4C4D4F", /* red */
|
||||
[10] = "#6C6A5F", /* green */
|
||||
[11] = "#C15E59", /* yellow */
|
||||
[12] = "#6F8F70", /* blue */
|
||||
[13] = "#979274", /* magenta */
|
||||
[14] = "#DC9548", /* cyan */
|
||||
[15] = "#c3c5c8", /* white */
|
||||
|
||||
/* special colors */
|
||||
[256] = "#0f0d16", /* background */
|
||||
[257] = "#f1c3bf", /* foreground */
|
||||
[258] = "#f1c3bf", /* cursor */
|
||||
[256] = "#101725", /* background */
|
||||
[257] = "#c3c5c8", /* foreground */
|
||||
[258] = "#c3c5c8", /* cursor */
|
||||
};
|
||||
|
||||
/* Default colors (colorname index)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
static const char* selbgcolor = "#0f0d16";
|
||||
static const char* selfgcolor = "#f1c3bf";
|
||||
static const char* normbgcolor = "#C6394B";
|
||||
static const char* normfgcolor = "#f1c3bf";
|
||||
static const char* urgbgcolor = "#98364A";
|
||||
static const char* urgfgcolor = "#f1c3bf";
|
||||
static const char* selbgcolor = "#101725";
|
||||
static const char* selfgcolor = "#c3c5c8";
|
||||
static const char* normbgcolor = "#6C6A5F";
|
||||
static const char* normfgcolor = "#c3c5c8";
|
||||
static const char* urgbgcolor = "#4C4D4F";
|
||||
static const char* urgfgcolor = "#c3c5c8";
|
||||
|
||||
+20
-20
@@ -1,23 +1,23 @@
|
||||
" Special
|
||||
let wallpaper = "/home/Zaske/Images/red_mountain.jpg"
|
||||
let background = "#0f0d16"
|
||||
let foreground = "#f1c3bf"
|
||||
let cursor = "#f1c3bf"
|
||||
let wallpaper = "/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
||||
let background = "#101725"
|
||||
let foreground = "#c3c5c8"
|
||||
let cursor = "#c3c5c8"
|
||||
|
||||
" Colors
|
||||
let color0 = "#0f0d16"
|
||||
let color1 = "#98364A"
|
||||
let color2 = "#C6394B"
|
||||
let color3 = "#A84859"
|
||||
let color4 = "#DE5F67"
|
||||
let color5 = "#F3877C"
|
||||
let color6 = "#DA7C82"
|
||||
let color7 = "#f1c3bf"
|
||||
let color8 = "#a88885"
|
||||
let color9 = "#98364A"
|
||||
let color10 = "#C6394B"
|
||||
let color11 = "#A84859"
|
||||
let color12 = "#DE5F67"
|
||||
let color13 = "#F3877C"
|
||||
let color14 = "#DA7C82"
|
||||
let color15 = "#f1c3bf"
|
||||
let color0 = "#101725"
|
||||
let color1 = "#4C4D4F"
|
||||
let color2 = "#6C6A5F"
|
||||
let color3 = "#C15E59"
|
||||
let color4 = "#6F8F70"
|
||||
let color5 = "#979274"
|
||||
let color6 = "#DC9548"
|
||||
let color7 = "#c3c5c8"
|
||||
let color8 = "#5f6674"
|
||||
let color9 = "#4C4D4F"
|
||||
let color10 = "#6C6A5F"
|
||||
let color11 = "#C15E59"
|
||||
let color12 = "#6F8F70"
|
||||
let color13 = "#979274"
|
||||
let color14 = "#DC9548"
|
||||
let color15 = "#c3c5c8"
|
||||
|
||||
+19
-19
@@ -1,20 +1,20 @@
|
||||
@define-color foreground #f1c3bf;
|
||||
@define-color background #0f0d16;
|
||||
@define-color cursor #f1c3bf;
|
||||
@define-color foreground #c3c5c8;
|
||||
@define-color background #101725;
|
||||
@define-color cursor #c3c5c8;
|
||||
|
||||
@define-color color0 #0f0d16;
|
||||
@define-color color1 #98364A;
|
||||
@define-color color2 #C6394B;
|
||||
@define-color color3 #A84859;
|
||||
@define-color color4 #DE5F67;
|
||||
@define-color color5 #F3877C;
|
||||
@define-color color6 #DA7C82;
|
||||
@define-color color7 #f1c3bf;
|
||||
@define-color color8 #a88885;
|
||||
@define-color color9 #98364A;
|
||||
@define-color color10 #C6394B;
|
||||
@define-color color11 #A84859;
|
||||
@define-color color12 #DE5F67;
|
||||
@define-color color13 #F3877C;
|
||||
@define-color color14 #DA7C82;
|
||||
@define-color color15 #f1c3bf;
|
||||
@define-color color0 #101725;
|
||||
@define-color color1 #4C4D4F;
|
||||
@define-color color2 #6C6A5F;
|
||||
@define-color color3 #C15E59;
|
||||
@define-color color4 #6F8F70;
|
||||
@define-color color5 #979274;
|
||||
@define-color color6 #DC9548;
|
||||
@define-color color7 #c3c5c8;
|
||||
@define-color color8 #5f6674;
|
||||
@define-color color9 #4C4D4F;
|
||||
@define-color color10 #6C6A5F;
|
||||
@define-color color11 #C15E59;
|
||||
@define-color color12 #6F8F70;
|
||||
@define-color color13 #979274;
|
||||
@define-color color14 #DC9548;
|
||||
@define-color color15 #c3c5c8;
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
set recolor "true"
|
||||
set recolor-keephue "true"
|
||||
|
||||
set completion-bg "#101725"
|
||||
set completion-fg "#c3c5c8"
|
||||
set completion-group-bg "#101725"
|
||||
set completion-group-fg "#6C6A5F"
|
||||
set completion-highlight-bg "#6C6A5F"
|
||||
set completion-highlight-fg "#101725"
|
||||
|
||||
set recolor-lightcolor "#101725"
|
||||
set recolor-darkcolor "#c3c5c8"
|
||||
set default-bg "#101725"
|
||||
|
||||
set inputbar-bg "#101725"
|
||||
set inputbar-fg "#c3c5c8"
|
||||
set notification-bg "#101725"
|
||||
set notification-fg "#c3c5c8"
|
||||
set notification-error-bg "#4C4D4F"
|
||||
set notification-error-fg "#c3c5c8"
|
||||
set notification-warning-bg "#4C4D4F"
|
||||
set notification-warning-fg "#c3c5c8"
|
||||
set statusbar-bg "#101725"
|
||||
set statusbar-fg "#c3c5c8"
|
||||
set index-bg "#101725"
|
||||
set index-fg "#c3c5c8"
|
||||
set index-active-bg "#c3c5c8"
|
||||
set index-active-fg "#101725"
|
||||
set render-loading-bg "#101725"
|
||||
set render-loading-fg "#c3c5c8"
|
||||
|
||||
set window-title-home-tilde true
|
||||
set statusbar-basename true
|
||||
set selection-clipboard clipboard
|
||||
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"$schema": "https://zed.dev/schema/themes/v0.1.0.json",
|
||||
"name": "pywal",
|
||||
"author": "pywal",
|
||||
"themes": [
|
||||
{
|
||||
"name": "pywal",
|
||||
"appearance": "dark",
|
||||
"style": {
|
||||
"background": "#10172590",
|
||||
"editor.background": "#10172590",
|
||||
"editor.foreground": "#c3c5c8",
|
||||
"text": "#c3c5c8",
|
||||
"text.muted": "#c3c5c870",
|
||||
"text.ignored": "#c3c5c840",
|
||||
"text.placeholder": "#c3c5c850",
|
||||
"ignored": "#c3c5c830",
|
||||
"element.hover": "#c3c5c830",
|
||||
"ghost_element.hover": "#4C4D4F30",
|
||||
"ghost_element.selected": "#4C4D4F30",
|
||||
"ghost_element.active": "#4C4D4F60",
|
||||
"border": "#101725",
|
||||
"editor.highlighted_line.background": "#4C4D4F10",
|
||||
"editor.active_line.background": "#4C4D4F10",
|
||||
"panel.background": "#10172590",
|
||||
"title_bar.background": "#10172590",
|
||||
"title_bar.inactive_background": "#10172590",
|
||||
"status_bar.background": "#10172590",
|
||||
"drop_target.background": "#10172590",
|
||||
"elevated_surface.background": "#101725",
|
||||
"toolbar.background": "#10172590",
|
||||
"tab_bar.background": "#10172590",
|
||||
"tab.inactive_background": "#10172590",
|
||||
"tab.active_background": "#4C4D4F30",
|
||||
"scrollbar.track.background": "transparent",
|
||||
"scrollbar.track.border": "#101725",
|
||||
"scrollbar.thumb.background": "#4C4D4F",
|
||||
"editor.gutter.background": "#10172590",
|
||||
"terminal.background": "#10172510",
|
||||
"terminal.foreground": "#c3c5c8",
|
||||
"terminal.dim_foreground": "#c3c5c8",
|
||||
"terminal.bright_foreground": "#c3c5c8",
|
||||
"terminal.ansi.black": "#101725",
|
||||
"terminal.ansi.red": "#4C4D4F",
|
||||
"terminal.ansi.green": "#6C6A5F",
|
||||
"terminal.ansi.yellow": "#C15E59",
|
||||
"terminal.ansi.blue": "#6F8F70",
|
||||
"terminal.ansi.magenta": "#979274",
|
||||
"terminal.ansi.cyan": "#DC9548",
|
||||
"terminal.ansi.white": "#c3c5c8",
|
||||
"terminal.ansi.bright_black": "#5f6674",
|
||||
"terminal.ansi.bright_red": "#4C4D4F",
|
||||
"terminal.ansi.bright_green": "#6C6A5F",
|
||||
"terminal.ansi.bright_yellow": "#C15E59",
|
||||
"terminal.ansi.bright_blue": "#6F8F70",
|
||||
"terminal.ansi.bright_magenta": "#979274",
|
||||
"terminal.ansi.bright_cyan": "#DC9548",
|
||||
"terminal.ansi.bright_white": "#c3c5c8",
|
||||
"modified": "#4C4D4F",
|
||||
"syntax": {
|
||||
"attribute": {
|
||||
"color": "#4C4D4F"
|
||||
},
|
||||
"boolean": {
|
||||
"color": "#6C6A5F"
|
||||
},
|
||||
"comment": {
|
||||
"color": "#5f6674"
|
||||
},
|
||||
"comment.doc": {
|
||||
"color": "#5f6674"
|
||||
},
|
||||
"constant": {
|
||||
"color": "#6C6A5F"
|
||||
},
|
||||
"function": {
|
||||
"color": "#DC9548"
|
||||
},
|
||||
"keyword": {
|
||||
"color": "#6F8F70"
|
||||
},
|
||||
"number": {
|
||||
"color": "#979274"
|
||||
},
|
||||
"operator": {
|
||||
"color": "#6F8F70"
|
||||
},
|
||||
"string": {
|
||||
"color": "#4C4D4F"
|
||||
},
|
||||
"variable": {
|
||||
"color": "#6C6A5F"
|
||||
}
|
||||
},
|
||||
"players": [
|
||||
{
|
||||
"cursor": "#4C4D4F",
|
||||
"background": "#101725",
|
||||
"selection": "#4C4D4F30"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
+57
-57
@@ -1,68 +1,68 @@
|
||||
! X colors.
|
||||
! Generated by 'wal'
|
||||
*foreground: #f1c3bf
|
||||
*background: #0f0d16
|
||||
*.foreground: #f1c3bf
|
||||
*.background: #0f0d16
|
||||
emacs*foreground: #f1c3bf
|
||||
emacs*background: #0f0d16
|
||||
URxvt*foreground: #f1c3bf
|
||||
XTerm*foreground: #f1c3bf
|
||||
UXTerm*foreground: #f1c3bf
|
||||
URxvt*background: [100]#0f0d16
|
||||
XTerm*background: #0f0d16
|
||||
UXTerm*background: #0f0d16
|
||||
URxvt*cursorColor: #f1c3bf
|
||||
XTerm*cursorColor: #f1c3bf
|
||||
UXTerm*cursorColor: #f1c3bf
|
||||
URxvt*borderColor: [100]#0f0d16
|
||||
*foreground: #c3c5c8
|
||||
*background: #101725
|
||||
*.foreground: #c3c5c8
|
||||
*.background: #101725
|
||||
emacs*foreground: #c3c5c8
|
||||
emacs*background: #101725
|
||||
URxvt*foreground: #c3c5c8
|
||||
XTerm*foreground: #c3c5c8
|
||||
UXTerm*foreground: #c3c5c8
|
||||
URxvt*background: [100]#101725
|
||||
XTerm*background: #101725
|
||||
UXTerm*background: #101725
|
||||
URxvt*cursorColor: #c3c5c8
|
||||
XTerm*cursorColor: #c3c5c8
|
||||
UXTerm*cursorColor: #c3c5c8
|
||||
URxvt*borderColor: [100]#101725
|
||||
|
||||
! Colors 0-15.
|
||||
*.color0: #0f0d16
|
||||
*color0: #0f0d16
|
||||
*.color1: #98364A
|
||||
*color1: #98364A
|
||||
*.color2: #C6394B
|
||||
*color2: #C6394B
|
||||
*.color3: #A84859
|
||||
*color3: #A84859
|
||||
*.color4: #DE5F67
|
||||
*color4: #DE5F67
|
||||
*.color5: #F3877C
|
||||
*color5: #F3877C
|
||||
*.color6: #DA7C82
|
||||
*color6: #DA7C82
|
||||
*.color7: #f1c3bf
|
||||
*color7: #f1c3bf
|
||||
*.color8: #a88885
|
||||
*color8: #a88885
|
||||
*.color9: #98364A
|
||||
*color9: #98364A
|
||||
*.color10: #C6394B
|
||||
*color10: #C6394B
|
||||
*.color11: #A84859
|
||||
*color11: #A84859
|
||||
*.color12: #DE5F67
|
||||
*color12: #DE5F67
|
||||
*.color13: #F3877C
|
||||
*color13: #F3877C
|
||||
*.color14: #DA7C82
|
||||
*color14: #DA7C82
|
||||
*.color15: #f1c3bf
|
||||
*color15: #f1c3bf
|
||||
*.color0: #101725
|
||||
*color0: #101725
|
||||
*.color1: #4C4D4F
|
||||
*color1: #4C4D4F
|
||||
*.color2: #6C6A5F
|
||||
*color2: #6C6A5F
|
||||
*.color3: #C15E59
|
||||
*color3: #C15E59
|
||||
*.color4: #6F8F70
|
||||
*color4: #6F8F70
|
||||
*.color5: #979274
|
||||
*color5: #979274
|
||||
*.color6: #DC9548
|
||||
*color6: #DC9548
|
||||
*.color7: #c3c5c8
|
||||
*color7: #c3c5c8
|
||||
*.color8: #5f6674
|
||||
*color8: #5f6674
|
||||
*.color9: #4C4D4F
|
||||
*color9: #4C4D4F
|
||||
*.color10: #6C6A5F
|
||||
*color10: #6C6A5F
|
||||
*.color11: #C15E59
|
||||
*color11: #C15E59
|
||||
*.color12: #6F8F70
|
||||
*color12: #6F8F70
|
||||
*.color13: #979274
|
||||
*color13: #979274
|
||||
*.color14: #DC9548
|
||||
*color14: #DC9548
|
||||
*.color15: #c3c5c8
|
||||
*color15: #c3c5c8
|
||||
|
||||
! Black color that will not be affected by bold highlighting.
|
||||
*.color66: #0f0d16
|
||||
*color66: #0f0d16
|
||||
*.color66: #101725
|
||||
*color66: #101725
|
||||
|
||||
! Xclock colors.
|
||||
XClock*foreground: #f1c3bf
|
||||
XClock*background: #0f0d16
|
||||
XClock*majorColor: rgba:f1/c3/bf/ff
|
||||
XClock*minorColor: rgba:f1/c3/bf/ff
|
||||
XClock*hourColor: rgba:f1/c3/bf/ff
|
||||
XClock*minuteColor: rgba:f1/c3/bf/ff
|
||||
XClock*secondColor: rgba:f1/c3/bf/ff
|
||||
XClock*foreground: #c3c5c8
|
||||
XClock*background: #101725
|
||||
XClock*majorColor: rgba:c3/c5/c8/ff
|
||||
XClock*minorColor: rgba:c3/c5/c8/ff
|
||||
XClock*hourColor: rgba:c3/c5/c8/ff
|
||||
XClock*minuteColor: rgba:c3/c5/c8/ff
|
||||
XClock*secondColor: rgba:c3/c5/c8/ff
|
||||
|
||||
! Set depth to make transparency work.
|
||||
URxvt*depth: 32
|
||||
|
||||
+20
-20
@@ -1,28 +1,28 @@
|
||||
/* CSS variables
|
||||
Generated by 'wal' */
|
||||
:root {
|
||||
--wallpaper: url("/home/Zaske/Images/red_mountain.jpg");
|
||||
--wallpaper: url("/home/zaske/Pictures/cyberpunk_GruvBox.jpg");
|
||||
|
||||
/* Special */
|
||||
--background: #0f0d16;
|
||||
--foreground: #f1c3bf;
|
||||
--cursor: #f1c3bf;
|
||||
--background: #101725;
|
||||
--foreground: #c3c5c8;
|
||||
--cursor: #c3c5c8;
|
||||
|
||||
/* Colors */
|
||||
--color0: #0f0d16;
|
||||
--color1: #98364A;
|
||||
--color2: #C6394B;
|
||||
--color3: #A84859;
|
||||
--color4: #DE5F67;
|
||||
--color5: #F3877C;
|
||||
--color6: #DA7C82;
|
||||
--color7: #f1c3bf;
|
||||
--color8: #a88885;
|
||||
--color9: #98364A;
|
||||
--color10: #C6394B;
|
||||
--color11: #A84859;
|
||||
--color12: #DE5F67;
|
||||
--color13: #F3877C;
|
||||
--color14: #DA7C82;
|
||||
--color15: #f1c3bf;
|
||||
--color0: #101725;
|
||||
--color1: #4C4D4F;
|
||||
--color2: #6C6A5F;
|
||||
--color3: #C15E59;
|
||||
--color4: #6F8F70;
|
||||
--color5: #979274;
|
||||
--color6: #DC9548;
|
||||
--color7: #c3c5c8;
|
||||
--color8: #5f6674;
|
||||
--color9: #4C4D4F;
|
||||
--color10: #6C6A5F;
|
||||
--color11: #C15E59;
|
||||
--color12: #6F8F70;
|
||||
--color13: #979274;
|
||||
--color14: #DC9548;
|
||||
--color15: #c3c5c8;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
set fish_color_autosuggestion 5f6674
|
||||
set fish_color_cancel 4C4D4F '--reverse'
|
||||
set fish_color_command 6C6A5F
|
||||
set fish_color_comment 5f6674
|
||||
set fish_color_cwd 6C6A5F
|
||||
set fish_color_cwd_root 4C4D4F
|
||||
set fish_color_end C15E59
|
||||
set fish_color_error 4C4D4F
|
||||
set fish_color_escape 979274
|
||||
set fish_color_history_current --bold
|
||||
set fish_color_host 6F8F70
|
||||
set fish_color_host_remote 6F8F70
|
||||
set fish_color_keyword 979274
|
||||
set fish_color_match --background=6F8F70
|
||||
set fish_color_normal c3c5c8
|
||||
set fish_color_operator DC9548
|
||||
set fish_color_option C15E59
|
||||
set fish_color_param 6F8F70
|
||||
set fish_color_quote C15E59
|
||||
set fish_color_redirection 979274
|
||||
set fish_color_search_match --background=5f6674
|
||||
set fish_color_selection --background=5f6674
|
||||
set fish_color_status 4C4D4F
|
||||
set fish_color_user 6C6A5F
|
||||
set fish_color_valid_path --underline
|
||||
|
||||
set fish_pager_color_background 101725
|
||||
set fish_pager_color_completion c3c5c8
|
||||
set fish_pager_color_description 5f6674
|
||||
set fish_pager_color_prefix 6C6A5F
|
||||
set fish_pager_color_progress 5f6674
|
||||
set fish_pager_color_secondary_background 101725
|
||||
set fish_pager_color_secondary_completion c3c5c8
|
||||
set fish_pager_color_secondary_description 5f6674
|
||||
set fish_pager_color_secondary_prefix 6C6A5F
|
||||
set fish_pager_color_selected_background --background=5f6674
|
||||
set fish_pager_color_selected_completion c3c5c8
|
||||
set fish_pager_color_selected_description 5f6674
|
||||
set fish_pager_color_selected_prefix 6C6A5F
|
||||
+21
-20
@@ -1,28 +1,29 @@
|
||||
{
|
||||
"wallpaper": "/home/Zaske/Images/red_mountain.jpg",
|
||||
"checksum": "d1a0ebf3dd6e5c5eb1d7933fbecb8b01",
|
||||
"wallpaper": "/home/zaske/Pictures/cyberpunk_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#0f0d16",
|
||||
"foreground": "#f1c3bf",
|
||||
"cursor": "#f1c3bf"
|
||||
"background": "#101725",
|
||||
"foreground": "#c3c5c8",
|
||||
"cursor": "#c3c5c8"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0f0d16",
|
||||
"color1": "#98364A",
|
||||
"color2": "#C6394B",
|
||||
"color3": "#A84859",
|
||||
"color4": "#DE5F67",
|
||||
"color5": "#F3877C",
|
||||
"color6": "#DA7C82",
|
||||
"color7": "#f1c3bf",
|
||||
"color8": "#a88885",
|
||||
"color9": "#98364A",
|
||||
"color10": "#C6394B",
|
||||
"color11": "#A84859",
|
||||
"color12": "#DE5F67",
|
||||
"color13": "#F3877C",
|
||||
"color14": "#DA7C82",
|
||||
"color15": "#f1c3bf"
|
||||
"color0": "#101725",
|
||||
"color1": "#4C4D4F",
|
||||
"color2": "#6C6A5F",
|
||||
"color3": "#C15E59",
|
||||
"color4": "#6F8F70",
|
||||
"color5": "#979274",
|
||||
"color6": "#DC9548",
|
||||
"color7": "#c3c5c8",
|
||||
"color8": "#5f6674",
|
||||
"color9": "#4C4D4F",
|
||||
"color10": "#6C6A5F",
|
||||
"color11": "#C15E59",
|
||||
"color12": "#6F8F70",
|
||||
"color13": "#979274",
|
||||
"color14": "#DC9548",
|
||||
"color15": "#c3c5c8"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
background=#101725
|
||||
foreground=#c3c5c8
|
||||
cursor=#c3c5c8
|
||||
|
||||
color0=#101725
|
||||
color1=#4C4D4F
|
||||
color2=#6C6A5F
|
||||
color3=#C15E59
|
||||
color4=#6F8F70
|
||||
color5=#979274
|
||||
color6=#DC9548
|
||||
color7=#c3c5c8
|
||||
color8=#5f6674
|
||||
color9=#4C4D4F
|
||||
color10=#6C6A5F
|
||||
color11=#C15E59
|
||||
color12=#6F8F70
|
||||
color13=#979274
|
||||
color14=#DC9548
|
||||
color15=#c3c5c8
|
||||
+20
-20
@@ -1,26 +1,26 @@
|
||||
// SCSS Variables
|
||||
// Generated by 'wal'
|
||||
$wallpaper: "/home/Zaske/Images/red_mountain.jpg";
|
||||
$wallpaper: "/home/zaske/Pictures/cyberpunk_GruvBox.jpg";
|
||||
|
||||
// Special
|
||||
$background: #0f0d16;
|
||||
$foreground: #f1c3bf;
|
||||
$cursor: #f1c3bf;
|
||||
$background: #101725;
|
||||
$foreground: #c3c5c8;
|
||||
$cursor: #c3c5c8;
|
||||
|
||||
// Colors
|
||||
$color0: #0f0d16;
|
||||
$color1: #98364A;
|
||||
$color2: #C6394B;
|
||||
$color3: #A84859;
|
||||
$color4: #DE5F67;
|
||||
$color5: #F3877C;
|
||||
$color6: #DA7C82;
|
||||
$color7: #f1c3bf;
|
||||
$color8: #a88885;
|
||||
$color9: #98364A;
|
||||
$color10: #C6394B;
|
||||
$color11: #A84859;
|
||||
$color12: #DE5F67;
|
||||
$color13: #F3877C;
|
||||
$color14: #DA7C82;
|
||||
$color15: #f1c3bf;
|
||||
$color0: #101725;
|
||||
$color1: #4C4D4F;
|
||||
$color2: #6C6A5F;
|
||||
$color3: #C15E59;
|
||||
$color4: #6F8F70;
|
||||
$color5: #979274;
|
||||
$color6: #DC9548;
|
||||
$color7: #c3c5c8;
|
||||
$color8: #5f6674;
|
||||
$color9: #4C4D4F;
|
||||
$color10: #6C6A5F;
|
||||
$color11: #C15E59;
|
||||
$color12: #6F8F70;
|
||||
$color13: #979274;
|
||||
$color14: #DC9548;
|
||||
$color15: #c3c5c8;
|
||||
|
||||
+20
-20
@@ -1,29 +1,29 @@
|
||||
# Shell variables
|
||||
# Generated by 'wal'
|
||||
wallpaper='/home/Zaske/Images/red_mountain.jpg'
|
||||
wallpaper="/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
||||
|
||||
# Special
|
||||
background='#0f0d16'
|
||||
foreground='#f1c3bf'
|
||||
cursor='#f1c3bf'
|
||||
background='#101725'
|
||||
foreground='#c3c5c8'
|
||||
cursor='#c3c5c8'
|
||||
|
||||
# Colors
|
||||
color0='#0f0d16'
|
||||
color1='#98364A'
|
||||
color2='#C6394B'
|
||||
color3='#A84859'
|
||||
color4='#DE5F67'
|
||||
color5='#F3877C'
|
||||
color6='#DA7C82'
|
||||
color7='#f1c3bf'
|
||||
color8='#a88885'
|
||||
color9='#98364A'
|
||||
color10='#C6394B'
|
||||
color11='#A84859'
|
||||
color12='#DE5F67'
|
||||
color13='#F3877C'
|
||||
color14='#DA7C82'
|
||||
color15='#f1c3bf'
|
||||
color0='#101725'
|
||||
color1='#4C4D4F'
|
||||
color2='#6C6A5F'
|
||||
color3='#C15E59'
|
||||
color4='#6F8F70'
|
||||
color5='#979274'
|
||||
color6='#DC9548'
|
||||
color7='#c3c5c8'
|
||||
color8='#5f6674'
|
||||
color9='#4C4D4F'
|
||||
color10='#6C6A5F'
|
||||
color11='#C15E59'
|
||||
color12='#6F8F70'
|
||||
color13='#979274'
|
||||
color14='#DC9548'
|
||||
color15='#c3c5c8'
|
||||
|
||||
# FZF colors
|
||||
export FZF_DEFAULT_OPTS="
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
// Stylus Variables
|
||||
// Generated by 'wal'
|
||||
$wallpaper = "/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
||||
|
||||
$background = #101725
|
||||
$foregroud = #c3c5c8
|
||||
$cursor = #c3c5c8
|
||||
|
||||
$color0 = #101725
|
||||
$color1 = #4C4D4F
|
||||
$color2 = #6C6A5F
|
||||
$color3 = #C15E59
|
||||
$color4 = #6F8F70
|
||||
$color5 = #979274
|
||||
$color6 = #DC9548
|
||||
$color7 = #c3c5c8
|
||||
$color8 = #5f6674
|
||||
$color9 = #4C4D4F
|
||||
$color10 = #6C6A5F
|
||||
$color11 = #C15E59
|
||||
$color12 = #6F8F70
|
||||
$color13 = #979274
|
||||
$color14 = #DC9548
|
||||
$color15 = #c3c5c8
|
||||
+20
-20
@@ -1,24 +1,24 @@
|
||||
wallpaper: "/home/Zaske/Images/red_mountain.jpg"
|
||||
wallpaper: "/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
||||
|
||||
special:
|
||||
background: "#0f0d16"
|
||||
foreground: "#f1c3bf"
|
||||
cursor: "#f1c3bf"
|
||||
background: "#101725"
|
||||
foreground: "#c3c5c8"
|
||||
cursor: "#c3c5c8"
|
||||
|
||||
colors:
|
||||
color0: "#0f0d16"
|
||||
color1: "#98364A"
|
||||
color2: "#C6394B"
|
||||
color3: "#A84859"
|
||||
color4: "#DE5F67"
|
||||
color5: "#F3877C"
|
||||
color6: "#DA7C82"
|
||||
color7: "#f1c3bf"
|
||||
color8: "#a88885"
|
||||
color9: "#98364A"
|
||||
color10: "#C6394B"
|
||||
color11: "#A84859"
|
||||
color12: "#DE5F67"
|
||||
color13: "#F3877C"
|
||||
color14: "#DA7C82"
|
||||
color15: "#f1c3bf"
|
||||
color0: "#101725"
|
||||
color1: "#4C4D4F"
|
||||
color2: "#6C6A5F"
|
||||
color3: "#C15E59"
|
||||
color4: "#6F8F70"
|
||||
color5: "#979274"
|
||||
color6: "#DC9548"
|
||||
color7: "#c3c5c8"
|
||||
color8: "#5f6674"
|
||||
color9: "#4C4D4F"
|
||||
color10: "#6C6A5F"
|
||||
color11: "#C15E59"
|
||||
color12: "#6F8F70"
|
||||
color13: "#979274"
|
||||
color14: "#DC9548"
|
||||
color15: "#c3c5c8"
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
# pywal theme for ghostty
|
||||
|
||||
background = 101725
|
||||
foreground = c3c5c8
|
||||
cursor-color = c3c5c8
|
||||
selection-background = c3c5c8
|
||||
selection-foreground = 101725
|
||||
|
||||
palette = 0=#101725
|
||||
palette = 1=#4C4D4F
|
||||
palette = 2=#6C6A5F
|
||||
palette = 3=#C15E59
|
||||
palette = 4=#6F8F70
|
||||
palette = 5=#979274
|
||||
palette = 6=#DC9548
|
||||
palette = 7=#c3c5c8
|
||||
palette = 8=#5f6674
|
||||
palette = 9=#4C4D4F
|
||||
palette = 10=#6C6A5F
|
||||
palette = 11=#C15E59
|
||||
palette = 12=#6F8F70
|
||||
palette = 13=#979274
|
||||
palette = 14=#DC9548
|
||||
palette = 15=#c3c5c8
|
||||
@@ -0,0 +1 @@
|
||||
_home_zaske_Pictures_cyberpunk_GruvBox_jpg_dark_None_None_914253_2.0.0.json
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "cdfdcad79ceb96533d617b28cb214214",
|
||||
"wallpaper": "/home/zaske/Images/blue_mountains.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#111b27",
|
||||
"foreground": "#c3c6c9",
|
||||
"cursor": "#c3c6c9"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#111b27",
|
||||
"color1": "#54A0CE",
|
||||
"color2": "#75ABCB",
|
||||
"color3": "#82A5BF",
|
||||
"color4": "#8DB8D2",
|
||||
"color5": "#A2BED1",
|
||||
"color6": "#9AC4DA",
|
||||
"color7": "#c3c6c9",
|
||||
"color8": "#606975",
|
||||
"color9": "#54A0CE",
|
||||
"color10": "#75ABCB",
|
||||
"color11": "#82A5BF",
|
||||
"color12": "#8DB8D2",
|
||||
"color13": "#A2BED1",
|
||||
"color14": "#9AC4DA",
|
||||
"color15": "#c3c6c9"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "1de1aadf0b2d8f6ec4b19dbeeb73e21c",
|
||||
"wallpaper": "/home/zaske/Pictures/Berge_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0e2222",
|
||||
"foreground": "#c2c7c7",
|
||||
"cursor": "#c2c7c7"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0e2222",
|
||||
"color1": "#948877",
|
||||
"color2": "#B29F88",
|
||||
"color3": "#CCB79C",
|
||||
"color4": "#DAC6AB",
|
||||
"color5": "#E6D1B8",
|
||||
"color6": "#F4E0BF",
|
||||
"color7": "#c2c7c7",
|
||||
"color8": "#5e7272",
|
||||
"color9": "#948877",
|
||||
"color10": "#B29F88",
|
||||
"color11": "#CCB79C",
|
||||
"color12": "#DAC6AB",
|
||||
"color13": "#E6D1B8",
|
||||
"color14": "#F4E0BF",
|
||||
"color15": "#c2c7c7"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "6c3f2ff09669b293394ff32397d7b1de",
|
||||
"wallpaper": "/home/zaske/Pictures/Blumen_gruvbox.png",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#201e1e",
|
||||
"foreground": "#c7c6c6",
|
||||
"cursor": "#c7c6c6"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#201e1e",
|
||||
"color1": "#5F938E",
|
||||
"color2": "#84A697",
|
||||
"color3": "#ADB091",
|
||||
"color4": "#BCBD95",
|
||||
"color5": "#DFD0AB",
|
||||
"color6": "#EADAB2",
|
||||
"color7": "#c7c6c6",
|
||||
"color8": "#776262",
|
||||
"color9": "#5F938E",
|
||||
"color10": "#84A697",
|
||||
"color11": "#ADB091",
|
||||
"color12": "#BCBD95",
|
||||
"color13": "#DFD0AB",
|
||||
"color14": "#EADAB2",
|
||||
"color15": "#c7c6c6"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "35be1ebd0ae3cd7bf06552953bcfc1ed",
|
||||
"wallpaper": "/home/zaske/Pictures/Miami_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0e1321",
|
||||
"foreground": "#c2c4c7",
|
||||
"cursor": "#c2c4c7"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0e1321",
|
||||
"color1": "#8C3D45",
|
||||
"color2": "#91444B",
|
||||
"color3": "#B04A4F",
|
||||
"color4": "#D05156",
|
||||
"color5": "#E45C58",
|
||||
"color6": "#E86E52",
|
||||
"color7": "#c2c4c7",
|
||||
"color8": "#5d6272",
|
||||
"color9": "#8C3D45",
|
||||
"color10": "#91444B",
|
||||
"color11": "#B04A4F",
|
||||
"color12": "#D05156",
|
||||
"color13": "#E45C58",
|
||||
"color14": "#E86E52",
|
||||
"color15": "#c2c4c7"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "1ebc9a515073da8b2460e677c0404500",
|
||||
"wallpaper": "/home/zaske/Pictures/astronaut_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0d1e1e",
|
||||
"foreground": "#c2c6c6",
|
||||
"cursor": "#c2c6c6"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0d1e1e",
|
||||
"color1": "#4D3D42",
|
||||
"color2": "#2C6060",
|
||||
"color3": "#5C5954",
|
||||
"color4": "#617F7D",
|
||||
"color5": "#975F64",
|
||||
"color6": "#C25540",
|
||||
"color7": "#c2c6c6",
|
||||
"color8": "#5c7070",
|
||||
"color9": "#4D3D42",
|
||||
"color10": "#2C6060",
|
||||
"color11": "#5C5954",
|
||||
"color12": "#617F7D",
|
||||
"color13": "#975F64",
|
||||
"color14": "#C25540",
|
||||
"color15": "#c2c6c6"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "cdfdcad79ceb96533d617b28cb214214",
|
||||
"wallpaper": "/home/zaske/Pictures/blue_mountains.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#111b27",
|
||||
"foreground": "#c3c6c9",
|
||||
"cursor": "#c3c6c9"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#111b27",
|
||||
"color1": "#54A0CE",
|
||||
"color2": "#75ABCB",
|
||||
"color3": "#82A5BF",
|
||||
"color4": "#8DB8D2",
|
||||
"color5": "#A2BED1",
|
||||
"color6": "#9AC4DA",
|
||||
"color7": "#c3c6c9",
|
||||
"color8": "#606975",
|
||||
"color9": "#54A0CE",
|
||||
"color10": "#75ABCB",
|
||||
"color11": "#82A5BF",
|
||||
"color12": "#8DB8D2",
|
||||
"color13": "#A2BED1",
|
||||
"color14": "#9AC4DA",
|
||||
"color15": "#c3c6c9"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "d1a0ebf3dd6e5c5eb1d7933fbecb8b01",
|
||||
"wallpaper": "/home/zaske/Pictures/cyberpunk_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#101725",
|
||||
"foreground": "#c3c5c8",
|
||||
"cursor": "#c3c5c8"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#101725",
|
||||
"color1": "#4C4D4F",
|
||||
"color2": "#6C6A5F",
|
||||
"color3": "#C15E59",
|
||||
"color4": "#6F8F70",
|
||||
"color5": "#979274",
|
||||
"color6": "#DC9548",
|
||||
"color7": "#c3c5c8",
|
||||
"color8": "#5f6674",
|
||||
"color9": "#4C4D4F",
|
||||
"color10": "#6C6A5F",
|
||||
"color11": "#C15E59",
|
||||
"color12": "#6F8F70",
|
||||
"color13": "#979274",
|
||||
"color14": "#DC9548",
|
||||
"color15": "#c3c5c8"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "e615648871cfb602d96a17e5b47af5f2",
|
||||
"wallpaper": "/home/zaske/Pictures/garage_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0a190a",
|
||||
"foreground": "#c1c5c1",
|
||||
"cursor": "#c1c5c1"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0a190a",
|
||||
"color1": "#6B4F39",
|
||||
"color2": "#776438",
|
||||
"color3": "#5E5647",
|
||||
"color4": "#8E6039",
|
||||
"color5": "#976D49",
|
||||
"color6": "#779470",
|
||||
"color7": "#c1c5c1",
|
||||
"color8": "#596e59",
|
||||
"color9": "#6B4F39",
|
||||
"color10": "#776438",
|
||||
"color11": "#5E5647",
|
||||
"color12": "#8E6039",
|
||||
"color13": "#976D49",
|
||||
"color14": "#779470",
|
||||
"color15": "#c1c5c1"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "77a594fbfd5046e09c715c3d2c68f8b5",
|
||||
"wallpaper": "/home/zaske/Pictures/girl2_gruvbox.png",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0c181e",
|
||||
"foreground": "#c2c5c6",
|
||||
"cursor": "#c2c5c6"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0c181e",
|
||||
"color1": "#988E76",
|
||||
"color2": "#B66588",
|
||||
"color3": "#6F9385",
|
||||
"color4": "#99AB90",
|
||||
"color5": "#CBAB99",
|
||||
"color6": "#E1D2AC",
|
||||
"color7": "#c2c5c6",
|
||||
"color8": "#5c6970",
|
||||
"color9": "#988E76",
|
||||
"color10": "#B66588",
|
||||
"color11": "#6F9385",
|
||||
"color12": "#99AB90",
|
||||
"color13": "#CBAB99",
|
||||
"color14": "#E1D2AC",
|
||||
"color15": "#c2c5c6"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "721210b2776e04acac934a8667fd5406",
|
||||
"wallpaper": "/home/zaske/Pictures/japan_gruvbox.png",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#18210e",
|
||||
"foreground": "#c5c7c2",
|
||||
"cursor": "#c5c7c2"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#18210e",
|
||||
"color1": "#5C6B4B",
|
||||
"color2": "#897642",
|
||||
"color3": "#36852C",
|
||||
"color4": "#6A8E2A",
|
||||
"color5": "#748A56",
|
||||
"color6": "#9B9D5D",
|
||||
"color7": "#c5c7c2",
|
||||
"color8": "#67725d",
|
||||
"color9": "#5C6B4B",
|
||||
"color10": "#897642",
|
||||
"color11": "#36852C",
|
||||
"color12": "#6A8E2A",
|
||||
"color13": "#748A56",
|
||||
"color14": "#9B9D5D",
|
||||
"color15": "#c5c7c2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "6668efbf1c2a501e72f3dcfae53e56f2",
|
||||
"wallpaper": "/home/zaske/Pictures/moon_gruvbox.png",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0e1420",
|
||||
"foreground": "#c2c4c7",
|
||||
"cursor": "#c2c4c7"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0e1420",
|
||||
"color1": "#B47514",
|
||||
"color2": "#CD6F13",
|
||||
"color3": "#BA902F",
|
||||
"color4": "#D4991D",
|
||||
"color5": "#D79921",
|
||||
"color6": "#F6B92D",
|
||||
"color7": "#c2c4c7",
|
||||
"color8": "#5d6472",
|
||||
"color9": "#B47514",
|
||||
"color10": "#CD6F13",
|
||||
"color11": "#BA902F",
|
||||
"color12": "#D4991D",
|
||||
"color13": "#D79921",
|
||||
"color14": "#F6B92D",
|
||||
"color15": "#c2c4c7"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "438e026e5ab761ca9ea65180d42316c1",
|
||||
"wallpaper": "/home/zaske/Pictures/scrap_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#2c1325",
|
||||
"foreground": "#cac4c8",
|
||||
"cursor": "#cac4c8"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#2c1325",
|
||||
"color1": "#A23D39",
|
||||
"color2": "#976038",
|
||||
"color3": "#936B5C",
|
||||
"color4": "#A6926E",
|
||||
"color5": "#D9A255",
|
||||
"color6": "#798787",
|
||||
"color7": "#cac4c8",
|
||||
"color8": "#776272",
|
||||
"color9": "#A23D39",
|
||||
"color10": "#976038",
|
||||
"color11": "#936B5C",
|
||||
"color12": "#A6926E",
|
||||
"color13": "#D9A255",
|
||||
"color14": "#798787",
|
||||
"color15": "#cac4c8"
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "d680941ce938730d2568e294ad7864a2",
|
||||
"wallpaper": "/home/zaske/Pictures/sunset_gruvbox.png",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#0d1620",
|
||||
"foreground": "#c2c4c7",
|
||||
"cursor": "#c2c4c7"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#0d1620",
|
||||
"color1": "#CC241D",
|
||||
"color2": "#DB3427",
|
||||
"color3": "#8A7B31",
|
||||
"color4": "#F54833",
|
||||
"color5": "#E96852",
|
||||
"color6": "#A1852C",
|
||||
"color7": "#c2c4c7",
|
||||
"color8": "#5d6671",
|
||||
"color9": "#CC241D",
|
||||
"color10": "#DB3427",
|
||||
"color11": "#8A7B31",
|
||||
"color12": "#F54833",
|
||||
"color13": "#E96852",
|
||||
"color14": "#A1852C",
|
||||
"color15": "#c2c4c7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"checksum": "115a16ba184137e93fe963efa3ea086e",
|
||||
"wallpaper": "/home/zaske/Pictures/wolf_GruvBox.jpg",
|
||||
"alpha": "100",
|
||||
"special": {
|
||||
"background": "#121312",
|
||||
"foreground": "#c3c4c3",
|
||||
"cursor": "#c3c4c3"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#121312",
|
||||
"color1": "#BF795C",
|
||||
"color2": "#916B67",
|
||||
"color3": "#AE7566",
|
||||
"color4": "#BD815E",
|
||||
"color5": "#B88869",
|
||||
"color6": "#C39569",
|
||||
"color7": "#c3c4c3",
|
||||
"color8": "#5a6e5a",
|
||||
"color9": "#BF795C",
|
||||
"color10": "#916B67",
|
||||
"color11": "#AE7566",
|
||||
"color12": "#BD815E",
|
||||
"color13": "#B88869",
|
||||
"color14": "#C39569",
|
||||
"color15": "#c3c4c3"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1 +1 @@
|
||||
]4;0;#0f0d16\]4;1;#98364A\]4;2;#C6394B\]4;3;#A84859\]4;4;#DE5F67\]4;5;#F3877C\]4;6;#DA7C82\]4;7;#f1c3bf\]4;8;#a88885\]4;9;#98364A\]4;10;#C6394B\]4;11;#A84859\]4;12;#DE5F67\]4;13;#F3877C\]4;14;#DA7C82\]4;15;#f1c3bf\]10;#f1c3bf\]11;#0f0d16\]12;#f1c3bf\]13;#f1c3bf\]17;#f1c3bf\]19;#0f0d16\]4;232;#0f0d16\]4;256;#f1c3bf\]708;#0f0d16\
|
||||
]4;0;#101725\]4;1;#4C4D4F\]4;2;#6C6A5F\]4;3;#C15E59\]4;4;#6F8F70\]4;5;#979274\]4;6;#DC9548\]4;7;#c3c5c8\]4;8;#5f6674\]4;9;#4C4D4F\]4;10;#6C6A5F\]4;11;#C15E59\]4;12;#6F8F70\]4;13;#979274\]4;14;#DC9548\]4;15;#c3c5c8\]10;#c3c5c8\]11;#101725\]12;#c3c5c8\]13;#c3c5c8\]17;#c3c5c8\]19;#101725\]4;232;#101725\]4;256;#c3c5c8\]4;257;#101725\]708;#101725\
|
||||
Reference in New Issue
Block a user