toto.rasi 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. configuration {
  2. display-drun: "run";
  3. display-combi: "combi";
  4. show-icons: true;
  5. font: "Monaco for Powerline 12";
  6. }
  7. * {
  8. purple: #000000;
  9. black: #000000;
  10. red: #eb6e67;
  11. green: #95ee8f;
  12. yellow: #f8c456;
  13. blue: #35BF5C;
  14. mangenta: #d886f3;
  15. cyan: #6cdcf7;
  16. emphasis: #206255;
  17. text: #dfdfdf;
  18. text-alt: #b2b2b2;
  19. fg: #abb2bf;
  20. bg: #282c34;
  21. spacing: 0;
  22. background-color: transparent;
  23. font: "Knack Nerd Font 14";
  24. text-color: @text;
  25. }
  26. window {
  27. transparency: "real";
  28. background-color: #282c34dd;
  29. }
  30. mainbox {
  31. padding: 25px;
  32. border-radius: 12px;
  33. }
  34. inputbar {
  35. margin: 0px 0px 20px 0px;
  36. children: [prompt, textbox-prompt-colon, entry, case-indicator];
  37. }
  38. prompt {
  39. text-color: @green;
  40. }
  41. textbox-prompt-colon {
  42. expand: false;
  43. str: ":";
  44. text-color: @text-alt;
  45. }
  46. entry {
  47. margin: 0px 10px;
  48. text-color: @text-alt;
  49. }
  50. listview {
  51. spacing: 5px;
  52. dynamic: true;
  53. scrollbar: false;
  54. }
  55. element.normal.normal {
  56. text-color: @text-alt;
  57. background-color: @bg;
  58. }
  59. element.alternate.normal {
  60. text-color: @text-alt;
  61. background-color: @bg;
  62. }
  63. element.selected.normal {
  64. text-color: @text-alt;
  65. background-color: @emphasis;
  66. }
  67. element {
  68. padding: 5px;
  69. text-color: @text-alt;
  70. highlight: bold #95ee8f; /* green */
  71. border-radius: 3px;
  72. }
  73. element selected {
  74. background-color: @emphasis;
  75. text-color: @text;
  76. }
  77. element urgent, element selected urgent {
  78. text-color: @red;
  79. }
  80. element active, element selected active {
  81. text-color: @purple;
  82. }
  83. message {
  84. padding: 5px;
  85. border-radius: 3px;
  86. background-color: @emphasis;
  87. border: 1px;
  88. border-color: @cyan;
  89. }
  90. button selected {
  91. padding: 5px;
  92. border-radius: 3px;
  93. background-color: @emphasis;
  94. }