Advertisement
Guest User

Untitled

a guest
Dec 12th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.77 KB | None | 0 0
  1. --------------------------
  2. -- Default luakit theme --
  3. --------------------------
  4.  
  5. local theme = {}
  6.  
  7. -- Default settings
  8. theme.font = "cure medium 11"
  9. theme.fg   = "#4d768a"
  10. theme.bg   = "#191919"
  11.  
  12. -- Genaral colours
  13. theme.success_fg = "#99D570"
  14. theme.loaded_fg  = "#c8a4a1"
  15. theme.error_fg = "#FF2361"
  16. theme.error_bg = "#FFf9ec"
  17.  
  18. -- Warning colours
  19. theme.warning_fg = "#FF2361"
  20. theme.warning_bg = "#FFF"
  21.  
  22. -- Notification colours
  23. theme.notif_fg = "#444"
  24. theme.notif_bg = "#FFF"
  25.  
  26. -- Menu colours
  27. theme.menu_fg                   = "#101010"
  28. theme.menu_bg                   = "#fff9ec"
  29. theme.menu_selected_fg          = "#b72f62"
  30. theme.menu_selected_bg          = "#fff9ec"
  31. theme.menu_title_bg             = "#fff9ec"
  32. theme.menu_primary_title_fg     = "#b72f62"
  33. theme.menu_secondary_title_fg   = "#5f5f5f"
  34.  
  35. -- Proxy manager
  36. theme.proxy_active_menu_fg      = '#000'
  37. theme.proxy_active_menu_bg      = '#FFF'
  38. theme.proxy_inactive_menu_fg    = '#888'
  39. theme.proxy_inactive_menu_bg    = '#FFF'
  40.  
  41. -- Statusbar specific
  42. theme.sbar_fg         = "#e8ba8c"
  43. theme.sbar_bg         = "#191919"
  44.  
  45. -- Downloadbar specific
  46. theme.dbar_fg         = "#ff824e"
  47. theme.dbar_bg         = "#000"
  48. theme.dbar_error_fg   = "#ff2361"
  49.  
  50. -- Input bar specific
  51. theme.ibar_fg           = "#2e3436"
  52. theme.ibar_bg           = "#fff9ec"
  53.  
  54. -- Tab label
  55. theme.tab_fg            = "#5f5f5f"
  56. theme.tab_bg            = "#191919"
  57. theme.tab_ntheme        = "#5f5f5f"
  58. theme.selected_fg       = "#a4858f"
  59. theme.selected_bg       = "#191919"
  60. theme.selected_ntheme   = "#afcb84"
  61. theme.loading_fg        = "#e8ba8c"
  62. theme.loading_bg        = "#191919"
  63.  
  64. -- Trusted/untrusted ssl colours
  65. theme.trust_fg          = "#a4858f"
  66. theme.notrust_fg        = "#c87d96"
  67.  
  68. return theme
  69. -- vim: et:sw=4:ts=8:sts=4:tw=80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement