| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- * ROFI color theme
- *
- * Based on Something Found in the Internet
- *
- * User: Contributors
- * Copyright: *!
- */
- configuration {
- font: "JetBrainsMono Nerd Font Medium 10";
- drun {
- display-name: "";
- }
- run {
- display-name: "";
- }
- window {
- display-name: "";
- }
- timeout {
- delay: 10;
- action: "kb-cancel";
- }
- }
- * {
- border: 0;
- margin: 0;
- padding: 0;
- spacing: 0;
- bg: #282828;
- bg-alt: #3c3836;
- fg: #fbf1c7;
- blue: #83a598;
- background-color: @bg;
- text-color: @fg;
- }
- window {
- transparency: "real";
- }
- mainbox {
- children: [inputbar, listview];
- }
- inputbar {
- background-color: @bg-alt;
- children: [prompt, entry];
- }
- entry {
- background-color: inherit;
- padding: 12px 3px;
- }
- prompt {
- background-color: inherit;
- padding: 12px 16px 12px 12px;
- }
- listview {
- lines: 8;
- }
- element {
- children: [element-text];
- }
- element-text {
- padding: 10px;
- }
- element-text selected {
- text-color: @blue;
- }
|