pywal.theme (2357B)
1 # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" 2 # example for white: "#ffffff", "#ff" or "255 255 255". 3 4 # All graphs and meters can be gradients 5 # For single color graphs leave "mid" and "end" variable empty. 6 # Use "start" and "end" variables for two color gradient 7 # Use "start", "mid" and "end" for three color gradient 8 9 # Main background, empty for terminal default, need to be empty if you want transparent background 10 theme[main_bg]=empty 11 12 # Main text color 13 theme[main_fg]="{{foreground}}" 14 15 # Title color for boxes 16 theme[title]="{{foreground}}" 17 18 # Higlight color for keyboard shortcuts 19 theme[hi_fg]="{{color3}}" 20 21 # Background color of selected item in processes box 22 theme[selected_bg]="{{background}}" 23 24 # Foreground color of selected item in processes box 25 theme[selected_fg]="{{color3}}" 26 27 # Color of inactive/disabled text 28 theme[inactive_fg]="{{color0}}" 29 30 # Misc colors for processes box including mini cpu graphs, details memory graph and details status text 31 theme[proc_misc]="{{background}}" 32 33 # Cpu box outline color 34 theme[cpu_box]="{{color0}}" 35 36 # Memory/disks box outline color 37 theme[mem_box]="{{color0}}" 38 39 # Net up/down box outline color 40 theme[net_box]="{{color0}}" 41 42 # Processes box outline color 43 theme[proc_box]="{{color0}}" 44 45 # Box divider line and small boxes line color 46 theme[div_line]="{{color8}}" 47 48 # Temperature graph colors 49 theme[temp_start]="{{color2}}" 50 theme[temp_mid]="{{color3}}" 51 theme[temp_end]="{{color3}}" 52 53 # CPU graph colors 54 theme[cpu_start]="{{color3}}" 55 theme[cpu_end]="{{color3}}" 56 57 # Mem/Disk free meter 58 # End is hight start is low 59 theme[free_end]="{{color3}}" 60 theme[free_mid]="{{color3}}" 61 theme[free_start]="{{color1}}" 62 63 # Mem/Disk cached meter 64 # End is hight start is low 65 theme[cached_start]="{{color3}}" 66 theme[cached_mid]="{{color3}}" 67 theme[cached_end]="{{color1}}" 68 69 # Mem/Disk available meter 70 # End is hight start is low 71 theme[available_end]="{{color3}}" 72 theme[available_mid]="{{color3}}" 73 theme[available_start]="{{color1}}" 74 75 # Mem/Disk used meter 76 theme[used_start]="{{color3}}" 77 theme[used_end]="{{color3}}" 78 79 # Download graph colors 80 theme[download_start]="#{{color9}}" 81 theme[download_mid]="{{color2}}" 82 theme[download_end]="{{color3}}" 83 84 # Upload graph colors 85 theme[upload_start]="#{{color9}}" 86 theme[upload_mid]="{{color2}}" 87 theme[upload_end]="{{color3}}" 88