Advertisement
poetician

seal-brown | i3

Apr 24th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. ## Base16 oomox-seal brown
  2. # Author: oomox-seal brown
  3. #
  4. # You can use these variables anywhere in the i3 configuration file.
  5.  
  6. set $base00 #190134
  7. set $base01 #392551
  8. set $base02 #5a496e
  9. set $base03 #6b5b7c
  10. set $base04 #050020
  11. set $base05 #bdb6c5
  12. set $base06 #dedae2
  13. set $base07 #feffff
  14. set $base08 #27d9d5
  15. set $base09 #5ba2b6
  16. set $base0A #8f6c97
  17. set $base0B #c33678
  18. set $base0C #f80059
  19. set $base0D #bd0152
  20. set $base0E #82034c
  21. set $base0F #2da9b1
  22.  
  23. # Basic bar configuration using the Base16 variables.
  24. bar {
  25. status_command i3status
  26.  
  27. colors {
  28. background $base00
  29. separator $base01
  30. statusline $base04
  31.  
  32. # State Border BG Text
  33. focused_workspace $base05 $base0D $base00
  34. active_workspace $base05 $base03 $base00
  35. inactive_workspace $base03 $base01 $base05
  36. urgent_workspace $base08 $base08 $base00
  37. binding_mode $base00 $base0A $base00
  38. }
  39. }
  40.  
  41. # Basic color configuration using the Base16 variables for windows and borders.
  42. # Property Name Border BG Text Indicator Child Border
  43. client.focused $base05 $base0D $base00 $base0D $base0C
  44. client.focused_inactive $base01 $base01 $base05 $base03 $base01
  45. client.unfocused $base01 $base00 $base05 $base01 $base01
  46. client.urgent $base08 $base08 $base00 $base08 $base08
  47. client.placeholder $base00 $base00 $base05 $base00 $base00
  48. client.background $base07
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement