Skip to content

Commit 8d3e5b6

Browse files
RohanVashisht1234jgmdev
authored andcommitted
Mobilephone theme (#38)
* Create mobilephone.lua * Update manifest.json * Update mobilephone.lua * Update mobilephone.lua * Update mobilephone.lua * Update mobilephone.lua
1 parent c555733 commit 8d3e5b6

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

colors/mobilephone.lua

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
-- generated using lite-xl designer
2+
local style = require "core.style"
3+
local common = require "core.common"
4+
5+
style.background = { common.color "#333a4a" } -- Docview
6+
style.background2 = { common.color "#2f4354" } -- Treeview
7+
style.background3 = { common.color "#1e1f22" } -- Command view
8+
style.text = { common.color "#b3b3b3" }
9+
style.caret = { common.color "#ffffff" }
10+
style.accent = { common.color "#919191" }
11+
style.dim = { common.color "#949494" }
12+
style.divider = { common.color "#1e1e1e" } -- Line between nodes
13+
style.selection = { common.color "#525b64" }
14+
style.line_number = { common.color "#2bdfff" }
15+
style.line_number2 = { common.color "#83838f" } -- With cursor
16+
style.line_highlight = { common.color "#404a54" }
17+
style.scrollbar = { common.color "#767682aa" }
18+
style.scrollbar2 = { common.color "#4b4b52" } -- Hovered
19+
style.scrollbar_track = { common.color "#1e1e1e" }
20+
style.nagbar = { common.color "#ff0000" }
21+
style.nagbar_text = { common.color "#ffffff" }
22+
style.nagbar_dim = { common.color "rgba(0, 0, 0, 0.45)" }
23+
style.drag_overlay = { common.color "rgba(255,255,255,0.1)" }
24+
style.drag_overlay_tab = { common.color "#93ddfa" }
25+
style.good = { common.color "#72b886" }
26+
style.warn = { common.color "#f5e728" }
27+
style.error = { common.color "#ff3333" }
28+
style.modified = { common.color "#e0d316" }
29+
30+
style.syntax["normal"] = { common.color "#ffffff" }
31+
style.syntax["symbol"] = { common.color "#ff4f90" }
32+
style.syntax["comment"] = { common.color "#8b949e" }
33+
style.syntax["keyword"] = { common.color "#ff57b6" } -- local function end if case
34+
style.syntax["keyword2"] = { common.color "#ffca0a" } -- self int float
35+
style.syntax["number"] = { common.color "#2bdfff" }
36+
style.syntax["literal"] = { common.color "#ffca0a" } -- true false nil
37+
style.syntax["string"] = { common.color "#a3d3fc" }
38+
style.syntax["operator"] = { common.color "#33ffe7" } -- = + - / < >
39+
style.syntax["function"] = { common.color "#12d7ff" }
40+
41+
style.log["INFO"] = { icon = "i", color = style.text }
42+
style.log["WARN"] = { icon = "!", color = style.warn }
43+
style.log["ERROR"] = { icon = "!", color = style.error }

manifest.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,17 @@
323323
"type" : "color",
324324
"version" : "0.1"
325325
},
326+
{
327+
"id" : "mobilephone",
328+
"mod_version" : "3.0.0",
329+
"name" : "mobilephone",
330+
"path" : "colors/mobilephone.lua",
331+
"tags" : [
332+
"dark"
333+
],
334+
"type" : "color",
335+
"version" : "0.1"
336+
},
326337
{
327338
"id" : "moe",
328339
"mod_version" : "3.0.0",

0 commit comments

Comments
 (0)