34 lines
886 B
Python
34 lines
886 B
Python
term = 'termite'
|
|
focus_color = '#bd93f9'
|
|
border_width = 2
|
|
mod = 'mod4'
|
|
hotkey_file='/home/paul/Hotkeys'
|
|
main_screen_res = [3840,1440]
|
|
top_screen_res = [1440,780]
|
|
|
|
#region colors
|
|
light_foreground_color = ['#f8f8f2','#f8f8f2']
|
|
dark_foreground_color = ['#282a36','#282a36']
|
|
background_color0 = ['#000000','#000000']
|
|
background_color8 = ['#4d4d4d','#4d4d4d']
|
|
base_color = ['#101010','#101010']
|
|
# red
|
|
red_color = ['#df253f','#df253f']
|
|
light_red_color = ['#ff5555','#ff5555']
|
|
# green
|
|
green_color = ['#53a93f','#53a93f']
|
|
light_green_color = ['#50fa7b','#50fa7b']
|
|
#orange
|
|
orange_color = ['#f57900','#f57900']
|
|
# yellow
|
|
yellow_color = ['#f1fa8c','#f1fa8c']
|
|
#blue
|
|
blue_color = ['#7197e7','#7197e7']
|
|
# purple
|
|
purple_color = ['#bd93f9','#bd93f9']
|
|
light_purple_color = ['#caa9fa','#caa9fa']
|
|
# magenta
|
|
magenta_color = ['#ff79c6','#ff79c6']
|
|
# cyan
|
|
cyan_color = ['#8be9fd','#8be9fd']
|
|
#endregion |