Advertisement
Guest User

[vimpcss] spaceblue.vimp

a guest
Jun 27th, 2017
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. " [vimpcss] spaceblue.vimp
  2.  
  3. " [reset all styles first]
  4. hi clear
  5.  
  6. " [entire background]
  7. hi! Normal color: #769070; background: #121417;
  8. hi! Normal>* font-family: 'tewi'
  9.  
  10. " [area inside of Normal that holds vimp info]
  11. hi! StatusLine color: #4f5b66; background: #121417; height: 15px; font-size: 10px; padding-top: 2px;
  12.  
  13. " [completion item & content]
  14. hi! CompItem[selected] background: #deded6;
  15. hi! CompResult font-size: 10px; color: #769070; width: 42%; font-weight: bold;
  16. hi! CompDesc font-size: 10px; color: #4f5b66; width: 50%;
  17.  
  18. " [entire bottom line when entering cmd]
  19. hi! CmdLine background: #121417; padding: 0; border: 0; vertical-align: middle;
  20. hi! -a CmdLine font-family: inherit; font-size: 10px; color: #fff;
  21.  
  22. " [top-most header of completion list]
  23. " [last rule is hack for padding tr elements]
  24. hi! CompTitle background: #4f5b66; font-weight: bold; text-transform: uppercase;
  25. hi! CompTitle>* color: #fff;
  26. hi! CompTitle>*:first-child padding: 2px 5px;
  27.  
  28. " Hints!
  29. hi Hint color: white; background-color: #800; border-color: ButtonShadow; font-family: Inconsolata; font-size: 12px; border-width: 0px; border-style: solid; padding 0 1px;
  30. hi Hint::after content: attr(number);
  31. hi HintActive color: black; background: #480;
  32. hi HintElem color: black; background-color: #880;
  33. hi HintImage opacity: .5;
  34.  
  35. " Used also in wrapping error messages as the background, simple speaking
  36. hi InfoMsg color: #ddc; background: #333;
  37.  
  38. " Used when error on syntax error in vimperatorrc, etc.
  39. hi LineNr color: orange; background-color: #333;
  40.  
  41. hi ErrorMsg color: #c22; background-color: #333; font-weight: bold;
  42.  
  43. " Used in CARET or COMMAND modes
  44. hi ModeMsg color: #ddc; background: #333;
  45.  
  46. hi MoreMsg color: #080; background: #222; font-weight: bold; -moz-border-radius: 5px; padding-left: 5px;
  47.  
  48.  
  49. " Used in :`js tr<TAB>`
  50. hi Boolean color: #f00;
  51. hi Function color: #04c;
  52. hi Null color: #00c;
  53. hi Number color: #00c;
  54. hi Object color: #c40;
  55. hi String color: #0c0;
  56.  
  57. " Used in "Press ENTER..." of `jumps` or `bmarks`, or "Follow Hint..." or `f`
  58. hi Question color: #080; background: #222; font-weight: bold; -moz-border-radius: 5px; padding-left: 5px;
  59.  
  60. " hi Search color: #333; background-color: #cc0; font-size: inherit; padding: 0; padding: 0;
  61.  
  62.  
  63. " Firefox's tabs
  64. hi TabNumber color: #ddc; font-weight: bold; margin: 0; padding-right: .3ex; text-shadow: #000 -1px 0 0, #000 0 1px 0, #000 1px 0 0, #000 0 -1px 0;
  65.  
  66. " Used in `pageinfo` or `jumps`
  67. hi Title color: #ddc; background: #333; font-weight: bold;
  68.  
  69. " Used in items of Info field of `bmarks`
  70. hi Keyword color: #CC0;
  71. hi Tag color: #0CC;
  72. hi URL color: #080; text-decoration: none; padding: 0 2px;
  73. hi URL:hover color: #880; background-color: #222; -moz-border-radius: 5px; cursor: pointer;
  74.  
  75. " made by andre k. w.
  76. hi ContentSeparator border:none;
  77.  
  78. " vim:set filetype=vim:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement