Skip to content

Commit 67f7438

Browse files
committed
feat: init
1 parent 9111640 commit 67f7438

File tree

4 files changed

+98
-12
lines changed

4 files changed

+98
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<div align="center">
22
<img width="196" height="196" src="./docs/logo.png" />
3-
<h1>Dark Orchid for {{replace}}</h1>
3+
<h1>Dark Orchid for Rofi</h1>
44

5-
A {{replace}} Theme, that's purple.
5+
A Rofi Theme, that's purple.
66

77
*If you like this project, consider giving it a ⭐ to show your support!*<br/>
88
*It also helps others to discover it.*
99

10-
[![Last Release Badge](https://img.shields.io/github/v/release/dark-orchid/{{replace}}?sort=semver&display_name=release&color=7300ff&labelColor=27272a)](../../releases/latest)
11-
[![GitHub License Badge](https://img.shields.io/github/license/dark-orchid/{{replace}}?color=7300ff&labelColor=27272a)](./LICENSE)
10+
[![Last Release Badge](https://img.shields.io/github/v/release/dark-orchid/rofi?sort=semver&display_name=release&color=7300ff&labelColor=27272a)](../../releases/latest)
11+
[![GitHub License Badge](https://img.shields.io/github/license/dark-orchid/rofi?color=7300ff&labelColor=27272a)](./LICENSE)
1212
[![Contributions Welcomed Badge](https://img.shields.io/badge/contributions-welcomed-7300ff?labelColor=27272a)](#contributing)
1313
[![Sponsor Hint Badge](https://img.shields.io/badge/❤️-Sponsor_it-%23dc2626?style=flat&labelColor=27272a)](https://github.com/sponsors/simonkovtyk/)
1414
</div>
1515

16-
![Dark Orchid {{replace}} Preview](./docs/preview.png)
16+
![Dark Orchid Rofi Preview](./docs/preview.png)
1717

1818
## About
1919
The Dark Orchid Theme is a cohesive visual ecosystem built around the striking color purple.
2020

2121
Centered on the rich Dark Orchid shade, it highlights purple's depth, creativity, and elegance. Through balanced contrasts and unified tones, the theme creates a bold yet harmonious aesthetic that stands out across any design.
2222

23-
## Features
24-
{{replace}}
25-
2623
## Usage
27-
{{replace}}
28-
29-
## Configuration
30-
{{replace}}
24+
1. Download the [theme file](./dark_orchid.rasi)
25+
2. Put it into the configuration (`~/.config/rofi`)
26+
3. Add the following code to the top of your configuration file (`~/.config/rofi/config.rasi`):
27+
```
28+
@theme "dark_orchid.rasi"
29+
```
30+
4. Enjoy it
3131

3232
## License
3333
The MIT License (MIT) - Please have a look at the [LICENSE file](./LICENSE) for more details.

dark_orchid.rasi

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
* {
2+
background-color: transparent;
3+
margin: 0;
4+
padding: 0;
5+
spacing: 0;
6+
text-color: @zinc-300;
7+
purple-500: #7300ff;
8+
zinc-200: #e4e4e7;
9+
zinc-300: #d4d4d8;
10+
zinc-400: #a1a1aa;
11+
zinc-500: #71717a;
12+
zinc-600: #52525b;
13+
zinc-700: #3f3f46;
14+
zinc-800: #27272a;
15+
zinc-900: #18181b;
16+
zinc-900-bg: #27272af2;
17+
zinc-950: #09090b;
18+
}
19+
20+
window {
21+
location: center;
22+
width: 480px;
23+
border-radius: 24px;
24+
background-color: @zinc-900-bg;
25+
}
26+
27+
mainbox {
28+
padding: 12px;
29+
}
30+
31+
inputbar {
32+
border-color: @zinc-700;
33+
border: 1px;
34+
border-radius: 100%;
35+
padding: 2px 16px;
36+
spacing: 8px;
37+
children: [ prompt, entry ];
38+
}
39+
40+
prompt {
41+
text-color: @purple-500;
42+
}
43+
44+
entry {
45+
blink: false;
46+
placeholder: "Search";
47+
placeholder-color: @zinc-500;
48+
}
49+
50+
message {
51+
margin: 12px 0 0;
52+
border-radius: 16px;
53+
}
54+
55+
textbox {
56+
padding: 8px 24px;
57+
}
58+
59+
listview {
60+
background-color: transparent;
61+
margin: 8px 0 0;
62+
lines: 8;
63+
columns: 1;
64+
fixed-height: false;
65+
}
66+
67+
element {
68+
padding: 2px 16px;
69+
spacing: 8px;
70+
border-radius: 100%;
71+
}
72+
73+
element selected.normal,
74+
element selected.active {
75+
text-color: #000000;
76+
background-color: @purple-500;
77+
}
78+
79+
element-icon {
80+
size: 1em;
81+
vertical-align: 0.5;
82+
}
83+
84+
element-text {
85+
text-color: inherit;
86+
}

docs/logo.png

500 KB
Loading

docs/preview.png

2.39 MB
Loading

0 commit comments

Comments
 (0)