summaryrefslogtreecommitdiff
path: root/.config/qtile/colors.py
blob: b02a76431264a5df3c4516624bc814da65aa40a7 (about) (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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
"""
My Favorite Color Themes For Qtile |

Feel free to change them as you like
"""

# Dracula theme
dracula = {
    "bg": "#282a36",
    "fg": "#f8f8f2",
    "curr": "#44475a",
    "cyan": "#8be9fd",
    "green": "#50fa7b",
    "orange": "#ffb86c",
    "purple": "#bd93f9",
    "red": "#ff5555",
}

# Gruvbox theme
gruvbox = {
    'bg':           '#282828',
    'fg':           '#d4be98',
    'dark-red':     '#ea6962',
    'red':          '#ea6962',
    'dark-green':   '#a9b665',
    'green':        '#a9b665',
    'dark-yellow':  '#e78a4e',
    'yellow':       '#d8a657',
    'dark-blue':    '#7daea3',
    'blue':         '#7daea3',
    'dark-magenta': '#d3869b',
    'magenta':      '#d3869b',
    'dark-cyan':    '#89b482',
    'cyan':         '#89b482',
    'dark-gray':    '#665c54',
    'gray':         '#928374',

    'fg4':          '#766f64',
    'fg3':          '#665c54',
    'fg2':          '#504945',
    'fg1':          '#3c3836',
    'bg0':          '#32302f',
    'fg0':          '#1d2021',
    'fg9':          '#ebdbb2'
}

monokai = {
    'bg': '#272822',
    'bg-alt': '#1D1E19',
    'b1' : '#1B2229',
    'fg' : '#F8F8F2',
    'fg-alt' : '#556172',
    'grey' : '#525254',
    'red' : '#E74C3C',
    'orange' : '#FD971F',
    'green' :'#A6E22E',
    'yellow' : '#E6DB74',
    'blue' : '#268bd2',
    'dark-blue' : '#727280',
    'magenta' : '#F92660',
    'violet' : '#9C91E4',
    'cyan' : '#66D9EF',
    'dark-cyan' : '#8FA1B3'
    }

my_colors = {
    "black": "#000000",
    "black2": "#2F343F",
    "blue": "#3384d0",
    "red": "#ff0000",
    "grey": "#a9a9a9",
    "grey2": "#C0C5CE",
    "cyan": "#6790EB",
    "green": "#62FF00",
    "white": "#F3F4F5",
    "orange": "#FBA922",
}