fix(themes): fix github theme colors
This commit is contained in:
parent
680869ec1a
commit
6f1449dbca
2 changed files with 6 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
local cosmic_modules = {
|
||||
'cosmic.core.disabled',
|
||||
'cosmic.core.editor',
|
||||
'cosmic.core.pluginsInit',
|
||||
'cosmic.core.commands',
|
||||
'cosmic.core.editor',
|
||||
'cosmic.core.mappings',
|
||||
'cosmic.config.editor',
|
||||
}
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
local theme_colors = require('github-theme.colors').setup()
|
||||
local config = require('github-theme.config')
|
||||
local theme_colors = require('github-theme.colors').setup(config.schema)
|
||||
|
||||
local colors = {
|
||||
white = theme_colors.white,
|
||||
bg = theme_colors.bg_statusline,
|
||||
bg_highlight = theme_colors.fg_statusline,
|
||||
white = theme_colors.bright_white,
|
||||
bg = theme_colors.bg,
|
||||
bg_highlight = theme_colors.bg_highlight,
|
||||
normal = theme_colors.blue,
|
||||
insert = theme_colors.green,
|
||||
command = theme_colors.bright_magenta,
|
||||
|
|
Loading…
Add table
Reference in a new issue