blob: 22c57ab462b12cc869c153859206fe327d3338ef [file] [log] [blame]
Copybara botca5ce642024-11-08 17:38:08 +01001/*******************************************************************************
2 * ROFI SQUARED THEME USING THE EVERFOREST PALETTE
3 * User : LR-Tech
4 * Theme Repo : https://github.com/lr-tech/rofi-themes-collection
5 *******************************************************************************/
6
7* {
8 font: "FiraCode Nerd Font Medium 12";
9
10 bg0: #2B3339;
11 bg1: #323D43;
12 fg0: #D3C6AA;
13
14 accent-color: #A7C080;
15 urgent-color: #DBBC7F;
16
17 background-color: transparent;
18 text-color: @fg0;
19
20 margin: 0;
21 padding: 0;
22 spacing: 0;
23}
24
25window {
26 location: center;
27 width: 480;
28
29 background-color: @bg0;
30}
31
32inputbar {
33 spacing: 8px;
34 padding: 8px;
35
36 background-color: @bg1;
37}
38
39prompt, entry, element-icon, element-text {
40 vertical-align: 0.5;
41}
42
43prompt {
44 text-color: @accent-color;
45}
46
47textbox {
48 padding: 8px;
49 background-color: @bg1;
50}
51
52listview {
53 padding: 4px 0;
54 lines: 8;
55 columns: 1;
56
57 fixed-height: false;
58}
59
60element {
61 padding: 8px;
62 spacing: 8px;
63}
64
65element normal normal {
66 text-color: @fg0;
67}
68
69element normal urgent {
70 text-color: @urgent-color;
71}
72
73element normal active {
74 text-color: @accent-color;
75}
76
77element alternate active {
78 text-color: @accent-color;
79}
80
81element selected {
82 text-color: @bg0;
83}
84
85element selected normal, element selected active {
86 background-color: @accent-color;
87}
88
89element selected urgent {
90 background-color: @urgent-color;
91}
92
93element-icon {
94 size: 0.8em;
95}
96
97element-text {
98 text-color: inherit;
99}