summaryrefslogtreecommitdiffstats
path: root/.config/rofi/onedark.rasi
blob: 9680d327db1e754bb93d63706c64946afe148e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * ROFI One Dark
 *
 * Based on OneDark.vim (https://github.com/joshdick/onedark.vim)
 *
 * Author: Benjamin Stauss
 * User: me-benni
 *
 */

configuration {
    display-drun:    "drun";
    display-run:     "run";
    display-window:  "win";
    show-icons:      true;
}

* {
  black:      #3b4252;
  red:        #bf616a;
  blue:       #81a1c1;
  cyan:       #88c0d0;
  emphasis:   #bf616a;
  text-alt:   #d8dee9;
  text:       #d8dee9;

  spacing: 0;
  background-color: transparent;

  font: "Fira Code 14";
  text-color: @text;
}

window {
  transparency: "real";
  fullscreen: true;
  background-color: #2e3440dd;
}

mainbox {
  padding: 30% 30%;
}

inputbar {
  margin: 0px 0px 20px 0px;
  children: [prompt, textbox-prompt-colon, entry, case-indicator];
}

prompt {
  text-color: @blue;
}

textbox-prompt-colon {
  expand: false;
  str: ":";
  text-color: @text-alt;
}

entry {
  margin: 0px 10px;
}

listview {
  spacing: 5px;
  dynamic: true;
  scrollbar: false;
}

element {
  padding: 5px;
  text-color: @text-alt;
  highlight: bold #ebcb8b;
  border-radius: 3px;
}

element selected {
  background-color: @black;
  text-color: @text;
}

element urgent, element selected urgent {
  text-color: @red;
}

element active, element selected active {
  text-color: @purple;
}

message {
  padding: 5px;
  border-radius: 3px;
  background-color: @emphasis;
  border: 1px;
  border-color: @cyan;
}

button selected {
  padding: 5px;
  border-radius: 3px;
  background-color: @emphasis;
}