theming dots

This commit is contained in:
2023-09-21 11:55:34 +02:00
parent 6c31e4126c
commit 17145cd0dd
37 changed files with 2530 additions and 350 deletions

View File

@@ -0,0 +1,89 @@
#Bashtop theme with nord palette (https://www.nordtheme.com)
#by Justin Zobel <justin.zobel@gmail.com>
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="{background}"
# Main text color
theme[main_fg]="{color14}"
# Title color for boxes
theme[title]="{color15}"
# Higlight color for keyboard shortcuts
theme[hi_fg]="{color13}"
# Background color of selected item in processes box
theme[selected_bg]="{color8}"
# Foreground color of selected item in processes box
theme[selected_fg]="{foreground}"
# Color of inactive/disabled text
theme[inactive_fg]="{color7}"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="{color12}"
# Cpu box outline color
theme[cpu_box]="{color13}"
# Memory/disks box outline color
theme[mem_box]="{color13}"
# Net up/down box outline color
theme[net_box]="{color13}"
# Processes box outline color
theme[proc_box]="{color13}"
# Box divider line and small boxes line color
theme[div_line]="{color13}"
# Temperature graph colors
theme[temp_start]="{color14}"
theme[temp_mid]="{color14}"
theme[temp_end]="{color14}"
# CPU graph colors
theme[cpu_start]="{color14}"
theme[cpu_mid]="{color14}"
theme[cpu_end]="{color14}"
# Mem/Disk free meter
theme[free_start]="{color14}"
theme[free_mid]="{color14}"
theme[free_end]="{color14}"
# Mem/Disk cached meter
theme[cached_start]="{color14}"
theme[cached_mid]="{color14}"
theme[cached_end]="{color14}"
# Mem/Disk available meter
theme[available_start]="{color14}"
theme[available_mid]="{color14}"
theme[available_end]="{color14}"
# Mem/Disk used meter
theme[used_start]="{color14}"
theme[used_mid]="{color14}"
theme[used_end]="{color14}"
# Download graph colors
theme[download_start]="{color14}"
theme[download_mid]="{color14}"
theme[download_end]="{color14}"
# Upload graph colors
theme[upload_start]="{color14}"
theme[upload_mid]="{color14}"
theme[upload_end]="{color14}"

View File

@@ -0,0 +1,11 @@
[color]
; background = {background}
; foreground = {foreground}
gradient = 1
gradient_count = 4
gradient_color_1 = '{color10}'
gradient_color_2 = '{color11}'
gradient_color_3 = '{color12}'
gradient_color_4 = '{color13}'

View File

@@ -0,0 +1,3 @@
$background = rgb({background.strip})
$color11 = rgb({color11.strip})
$color14 = rgb({color14.strip})

View File

@@ -0,0 +1,8 @@
* {{
background: {background};
background-alt: {background};
foreground: {foreground};
selected: {color9};
active: {color11};
urgent: {color13};
}}

View File

@@ -0,0 +1,16 @@
[Dynamic]
text = {foreground.strip}
subtext = {foreground.strip}
main = {background.strip}
sidebar = {background.strip}
player = {background.strip}
card = {background.strip}
shadow = {background.strip}
selected-row = {color14.strip}
button = {color9.strip}
button-active = {color14.strip}
button-disabled = {color8.strip}
tab-active = {color9.strip}
notification = {color0.strip}
notification-error = {color9.strip}
misc = {color0.strip}

View File

@@ -0,0 +1,103 @@
! X colors.
! Generated by 'wal'
*foreground: {foreground}
*background: {background}
*.foreground: {foreground}
*.background: {background}
emacs*foreground: {foreground}
emacs*background: {background}
URxvt*foreground: {foreground}
XTerm*foreground: {foreground}
UXTerm*foreground: {foreground}
URxvt*background: {background.alpha}
XTerm*background: {background}
UXTerm*background: {background}
URxvt*cursorColor: {cursor}
XTerm*cursorColor: {cursor}
UXTerm*cursorColor: {cursor}
URxvt*borderColor: {background.alpha}
! Colors 0-15.
*.color0: {color0}
*color0: {color0}
*.color1: {color1}
*color1: {color1}
*.color2: {color2}
*color2: {color2}
*.color3: {color3}
*color3: {color3}
*.color4: {color4}
*color4: {color4}
*.color5: {color5}
*color5: {color5}
*.color6: {color6}
*color6: {color6}
*.color7: {color7}
*color7: {color7}
*.color8: {color8}
*color8: {color8}
*.color9: {color9}
*color9: {color9}
*.color10: {color10}
*color10: {color10}
*.color11: {color11}
*color11: {color11}
*.color12: {color12}
*color12: {color12}
*.color13: {color13}
*color13: {color13}
*.color14: {color14}
*color14: {color14}
*.color15: {color15}
*color15: {color15}
! Black color that will not be affected by bold highlighting.
*.color66: {color0}
*color66: {color0}
! Xclock colors.
XClock*foreground: {foreground}
XClock*background: {background}
XClock*majorColor: rgba:{color15.xrgba}
XClock*minorColor: rgba:{color15.xrgba}
XClock*hourColor: rgba:{color15.xrgba}
XClock*minuteColor: rgba:{color15.xrgba}
XClock*secondColor: rgba:{color15.xrgba}
! Set depth to make transparency work.
URxvt*depth: 32
! dwm colors.
dwm.normfgcolor: {foreground}
dwm.normbgcolor: {background}
dwm.normbordercolor: {color15}
dwm.normfloatcolor: {color7}
dwm.selfgcolor: {color0}
dwm.selbgcolor: {color1}
dwm.selbordercolor: {color9}
dwm.selfloatcolor: {color9}
dwm.titlenormfgcolor: {color7}
dwm.titlenormbgcolor: {color0}
dwm.titlenormbordercolor: {color8}
dwm.titlenormfloatcolor: {color0}
dwm.titleselfgcolor: {color2}
dwm.titleselbgcolor: {background}
dwm.titleselbordercolor: {color15}
dwm.titleselfloatcolor: {color15}
dwm.tagsnormfgcolor: {color7}
dwm.tagsnormbgcolor: {color0}
dwm.tagsnormbordercolor: {color15}
dwm.tagsnormfloatcolor: {color15}
dwm.tagsselfgcolor: {color2}
dwm.tagsselbgcolor: {color0}
dwm.tagsselbordercolor: {color4}
dwm.tagsselfloatcolor: {color5}
dwm.hidnormfgcolor: {color8}
dwm.hidnormbgcolor: {color0}
dwm.hidselfgcolor: {color8}
dwm.hidselbgcolor: {color0}
dwm.urgfgcolor: {color0}
dwm.urgbgcolor: {color1}
dwm.urgbordercolor: {color1}
dwm.urgfloatcolor: {color1}

View File

@@ -0,0 +1,40 @@
# ============================
# ========== Colors ==========
# ============================
foreground {foreground}
background {background}
cursor {cursor}
selection_foreground {background}
selection_background {foreground}
active_border_color {color7}
inactive_border_color {color8}
bell_border_color {color8}
color0 {color0}
color1 {color1}
color2 {color2}
color3 {color3}
color4 {color4}
color5 {color5}
color6 {color6}
color7 {color7}
color8 {color8}
color9 {color9}
color10 {color10}
color11 {color11}
color12 {color12}
color13 {color13}
color14 {color14}
color15 {color15}
active_tab_foreground {color2}
active_tab_background {background}
active_tab_font_style normal
inactive_tab_foreground {foreground}
inactive_tab_background {background}
# vim:ft=conf