aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-09-21 08:55:06 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-09-21 08:55:06 -0400
commitf7cfaf74fb0170bc65671c493bccd49b11835256 (patch)
treeb3347b81423adeaaf1ceb18128663124117276c7 /themes
parent68e7fc2fef3f9cbd4da4a89fa12915d4e683b439 (diff)
Enabled all theme colors and changed line number colors in the terminal version.
Previously, only colors used in the theme files were enabled.
Diffstat (limited to 'themes')
-rw-r--r--themes/dark.lua40
-rw-r--r--themes/light.lua36
-rw-r--r--themes/term.lua8
3 files changed, 42 insertions, 42 deletions
diff --git a/themes/dark.lua b/themes/dark.lua
index 477435c8..bd22b952 100644
--- a/themes/dark.lua
+++ b/themes/dark.lua
@@ -6,27 +6,27 @@ local buffer = buffer
local property, property_int = buffer.property, buffer.property_int
-- Greyscale colors.
---property['color.dark_black'] = 0x000000
+property['color.dark_black'] = 0x000000
property['color.black'] = 0x1A1A1A
property['color.light_black'] = 0x333333
---property['color.grey_black'] = 0x4D4D4D
+property['color.grey_black'] = 0x4D4D4D
property['color.dark_grey'] = 0x666666
property['color.grey'] = 0x808080
property['color.light_grey'] = 0x999999
---property['color.grey_white'] = 0xB3B3B3
+property['color.grey_white'] = 0xB3B3B3
property['color.dark_white'] = 0xCCCCCC
---property['color.white'] = 0xE6E6E6
---property['color.light_white'] = 0xFFFFFF
+property['color.white'] = 0xE6E6E6
+property['color.light_white'] = 0xFFFFFF
-- Dark colors.
---property['color.dark_red'] = 0x1A1A66
+property['color.dark_red'] = 0x1A1A66
property['color.dark_yellow'] = 0x1A6666
---property['color.dark_green'] = 0x1A661A
---property['color.dark_teal'] = 0x66661A
---property['color.dark_purple'] = 0x661A66
---property['color.dark_orange'] = 0x1A66B3
---property['color.dark_pink'] = 0x6666B3
---property['color.dark_lavender'] = 0xB36666
+property['color.dark_green'] = 0x1A661A
+property['color.dark_teal'] = 0x66661A
+property['color.dark_purple'] = 0x661A66
+property['color.dark_orange'] = 0x1A66B3
+property['color.dark_pink'] = 0x6666B3
+property['color.dark_lavender'] = 0xB36666
property['color.dark_blue'] = 0xB3661A
-- Normal colors.
@@ -36,19 +36,19 @@ property['color.green'] = 0x4D994D
property['color.teal'] = 0x99994D
property['color.purple'] = 0x994D99
property['color.orange'] = 0x4D99E6
---property['color.pink'] = 0x9999E6
+property['color.pink'] = 0x9999E6
property['color.lavender'] = 0xE69999
property['color.blue'] = 0xE6994D
-- Light colors.
---property['color.light_red'] = 0x8080CC
+property['color.light_red'] = 0x8080CC
property['color.light_yellow'] = 0x80CCCC
property['color.light_green'] = 0x80CC80
---property['color.light_teal'] = 0xCCCC80
---property['color.light_purple'] = 0xCC80CC
---property['color.light_orange'] = 0x80CCFF
---property['color.light_pink'] = 0xCCCCFF
---property['color.light_lavender'] = 0xFFCCCC
+property['color.light_teal'] = 0xCCCC80
+property['color.light_purple'] = 0xCC80CC
+property['color.light_orange'] = 0x80CCFF
+property['color.light_pink'] = 0xCCCCFF
+property['color.light_lavender'] = 0xFFCCCC
property['color.light_blue'] = 0xFFCC80
-- Default font.
@@ -131,7 +131,7 @@ local INDIC_PLACEHOLDER = textadept.snippets.INDIC_PLACEHOLDER
buffer.indic_fore[INDIC_PLACEHOLDER] = property_int['color.grey']
-- Call tips.
---buffer.call_tip_fore_hlt = property_int['color.light_blue']
+buffer.call_tip_fore_hlt = property_int['color.light_blue']
-- Long Lines.
buffer.edge_colour = property_int['color.dark_grey']
diff --git a/themes/light.lua b/themes/light.lua
index 71f2746b..9ec38cdc 100644
--- a/themes/light.lua
+++ b/themes/light.lua
@@ -6,26 +6,26 @@ local buffer = buffer
local property, property_int = buffer.property, buffer.property_int
-- Greyscale colors.
---property['color.dark_black'] = 0x000000
---property['color.black'] = 0x1A1A1A
+property['color.dark_black'] = 0x000000
+property['color.black'] = 0x1A1A1A
property['color.light_black'] = 0x333333
property['color.grey_black'] = 0x4D4D4D
---property['color.dark_grey'] = 0x666666
+property['color.dark_grey'] = 0x666666
property['color.grey'] = 0x808080
property['color.light_grey'] = 0x999999
---property['color.grey_white'] = 0xB3B3B3
+property['color.grey_white'] = 0xB3B3B3
property['color.dark_white'] = 0xCCCCCC
property['color.white'] = 0xE6E6E6
---property['color.light_white'] = 0xFFFFFF
+property['color.light_white'] = 0xFFFFFF
-- Dark colors.
---property['color.dark_red'] = 0x1A1A66
+property['color.dark_red'] = 0x1A1A66
property['color.dark_yellow'] = 0x1A6666
property['color.dark_green'] = 0x1A661A
---property['color.dark_teal'] = 0x66661A
---property['color.dark_purple'] = 0x661A66
+property['color.dark_teal'] = 0x66661A
+property['color.dark_purple'] = 0x661A66
property['color.dark_orange'] = 0x1A66B3
---property['color.dark_pink'] = 0x6666B3
+property['color.dark_pink'] = 0x6666B3
property['color.dark_lavender'] = 0xB36666
property['color.dark_blue'] = 0xB3661A
@@ -36,19 +36,19 @@ property['color.green'] = 0x4D994D
property['color.teal'] = 0x99994D
property['color.purple'] = 0x994D99
property['color.orange'] = 0x4D99E6
---property['color.pink'] = 0x9999E6
+property['color.pink'] = 0x9999E6
property['color.lavender'] = 0xE69999
---property['color.blue'] = 0xE6994D
+property['color.blue'] = 0xE6994D
-- Light colors.
property['color.light_red'] = 0x8080CC
property['color.light_yellow'] = 0x80CCCC
---property['color.light_green'] = 0x80CC80
---property['color.light_teal'] = 0xCCCC80
---property['color.light_purple'] = 0xCC80CC
---property['color.light_orange'] = 0x80CCFF
---property['color.light_pink'] = 0xCCCCFF
---property['color.light_lavender'] = 0xFFCCCC
+property['color.light_green'] = 0x80CC80
+property['color.light_teal'] = 0xCCCC80
+property['color.light_purple'] = 0xCC80CC
+property['color.light_orange'] = 0x80CCFF
+property['color.light_pink'] = 0xCCCCFF
+property['color.light_lavender'] = 0xFFCCCC
property['color.light_blue'] = 0xFFCC80
-- Default font.
@@ -131,7 +131,7 @@ local INDIC_PLACEHOLDER = textadept.snippets.INDIC_PLACEHOLDER
buffer.indic_fore[INDIC_PLACEHOLDER] = property_int['color.grey_black']
-- Call tips.
---buffer.call_tip_fore_hlt = property_int['color.light_blue']
+buffer.call_tip_fore_hlt = property_int['color.light_blue']
-- Long Lines.
buffer.edge_colour = property_int['color.grey']
diff --git a/themes/term.lua b/themes/term.lua
index bba23c81..142b7653 100644
--- a/themes/term.lua
+++ b/themes/term.lua
@@ -21,15 +21,15 @@ property['color.white'] = 0xC0C0C0
property['color.light_black'] = 0x404040
property['color.light_red'] = 0x0000FF
property['color.light_green'] = 0x00FF00
---property['color.light_yellow'] = 0x00FFFF
+property['color.light_yellow'] = 0x00FFFF
property['color.light_blue'] = 0xFF0000
property['color.light_magenta'] = 0xFF00FF
---property['color.light_cyan'] = 0xFFFF00
+property['color.light_cyan'] = 0xFFFF00
property['color.light_white'] = 0xFFFFFF
-- Predefined styles.
property['style.default'] = 'fore:$(color.white),back:$(color.black)'
---property['style.linenumber'] =
+property['style.linenumber'] = 'fore:$(color.black),bold'
property['style.bracelight'] = 'fore:$(color.black),back:$(color.white)'
--property['style.controlchar'] =
--property['style.indentguide'] =
@@ -84,7 +84,7 @@ local INDIC_PLACEHOLDER = textadept.snippets.INDIC_PLACEHOLDER
buffer.indic_fore[INDIC_PLACEHOLDER] = property_int['color.magenta']
-- Call tips.
---buffer.call_tip_fore_hlt = property_int['color.blue']
+buffer.call_tip_fore_hlt = property_int['color.blue']
-- Long Lines.
buffer.edge_colour = property_int['color.red']