Skip to content

Commit 1001f03

Browse files
smezzyjgmdev
authored andcommitted
add the focus text editor theme (#34)
* add the focus text editor theme * sorted manifest.json and changed filename * changed theme name * fuck forgot the comma
1 parent e33e6a9 commit 1001f03

File tree

2 files changed

+54
-11
lines changed

2 files changed

+54
-11
lines changed

colors/focus.lua

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
-- color theme from the focus text editor
2+
3+
local style = require "core.style"
4+
local common = require "core.common"
5+
6+
style.background = { common.color "#15212A" }
7+
style.background2 = { common.color "#10191F" }
8+
style.background3 = { common.color "#18262FAA" }
9+
style.text = { common.color "#BFC9DBFF" }
10+
style.caret = { common.color "#26B2B2FF" }
11+
style.accent = { common.color "#ffffff" }
12+
style.dim = { common.color "#545e70" }
13+
style.divider = { common.color "#21333F" }
14+
style.selection = { common.color "#1C4449" }
15+
style.line_number = { common.color "#87919DFF" }
16+
style.line_number2 = { common.color "#BFC9DBFF" }
17+
style.line_highlight = { common.color "#1C4449" }
18+
style.scrollbar = { common.color "#33CCCC19" }
19+
style.scrollbar2 = { common.color "#33CCCC4C" }
20+
style.scrollbar_track = { common.color "#10191F4C" }
21+
style.guide = { common.color "#1F2F3A" } -- indentguide
22+
23+
style.syntax["normal"] = { common.color "#82AAA3" }
24+
style.syntax["symbol"] = { common.color "#BFC9DB" }
25+
style.syntax["comment"] = { common.color "#87919D" }
26+
style.syntax["keyword"] = { common.color "#E67D74" }
27+
style.syntax["keyword2"] = { common.color "#ffffff" }
28+
style.syntax["number"] = { common.color "#D699B5" }
29+
style.syntax["literal"] = { common.color "#ea5964" }
30+
style.syntax["string"] = { common.color "#D4BC7D" }
31+
style.syntax["operator"] = { common.color "#E0AD82" }
32+
style.syntax["function"] = { common.color "#D0C5A9" }

manifest.json

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@
3535
"dark"
3636
]
3737
},
38+
{
39+
"id" : "bearded-theme-vivid-black",
40+
"mod_version" : "3.0.0",
41+
"name" : "Bearded Theme Vivid Black",
42+
"path" : "colors/bearded-theme-vivid-black.lua",
43+
"tags" : [
44+
"dark"
45+
],
46+
"type" : "color",
47+
"version" : "0.1"
48+
},
3849
{
3950
"id" : "betelgeuse",
4051
"mod_version" : "3.0.0",
@@ -178,6 +189,17 @@
178189
"type" : "color",
179190
"version" : "0.1"
180191
},
192+
{
193+
"id" : "focus",
194+
"mod_version" : "3.0.0",
195+
"name" : "focus",
196+
"path" : "colors/focus.lua",
197+
"tags" : [
198+
"dark"
199+
],
200+
"type" : "color",
201+
"version" : "0.1"
202+
},
181203
{
182204
"id" : "github",
183205
"mod_version" : "3.0.0",
@@ -529,17 +551,6 @@
529551
],
530552
"type" : "color",
531553
"version" : "0.1"
532-
},
533-
{
534-
"id" : "bearded-theme-vivid-black",
535-
"mod_version" : "3.0.0",
536-
"name" : "Bearded Theme Vivid Black",
537-
"path" : "colors/bearded-theme-vivid-black.lua",
538-
"tags" : [
539-
"dark"
540-
],
541-
"type" : "color",
542-
"version" : "0.1"
543554
}
544555
]
545556
}

0 commit comments

Comments
 (0)