Fixed Doom acario theme (#3533) (#3539)

Changed the `namespace` style to fix the issue (#3533).

I also made the theme look a little closer to how it looks in Emacs, I did however opt to still have it slightly different as I found it easier to read with my port than on the original in Emacs.
I also sorted most keys (mainly from line 8 to 28) for the theme to be in alphabetical order, so it's easier to have a quick glance where they are.
pull/3547/head
Luna 2 years ago committed by GitHub
parent 28c5e2170e
commit f0fb3407d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,38 +2,42 @@
# #
# This was made based on # This was made based on
# https://github.com/doomemacs/themes/blob/master/themes/doom-acario-dark-theme.el # https://github.com/doomemacs/themes/blob/master/themes/doom-acario-dark-theme.el
# I've done my best to make it work completely, but there's still some things that differ from the emacs version. # I've done my best to make it look like the Emacs theme, there are still things that looks different from the original.
# But I've decided to keep it like that as I found it to be easier to read when there's a lot going on i.e lots of variables, strings and functions close to each other.
type = { fg = 'blue' } 'attribute' = { fg = 'blue' }
constructor = { fg = 'red' } 'comment' = { fg = 'gray', modifiers = ['italic'] }
constant = { fg = 'magenta' }
'constant.numeric' = { fg = 'orange' }
string = { fg = 'green' }
comment = { fg = 'gray', modifiers = ['italic'] }
'comment.block' = { fg = 'green', modifiers = ['italic'] } 'comment.block' = { fg = 'green', modifiers = ['italic'] }
'comment.block.documentation' = { fg = 'green', modifiers = ['italic'] } 'comment.block.documentation' = { fg = 'green', modifiers = ['italic'] }
variable = { fg = 'cyan' } 'constant' = { fg = 'magenta' }
'variable.parameter' = { fg = 'blue' } 'constant.numeric' = { fg = 'orange' }
label = { fg = 'green' } 'constructor' = { fg = 'red' }
keyword = { fg = 'red' } 'function' = { fg = 'yellow' }
operator = { fg = 'blue' } 'function.builtin' = { fg = 'blue' }
function = { fg = 'yellow' } 'function.method' = { fg = 'white' }
tag = { fg = 'cyan' } 'keyword' = { fg = 'red' }
attribute = { fg = 'blue' } 'label' = { fg = 'green' }
attribute = { fg = 'blue' } 'namespace' = { fg = 'white' }
namespace = { fg = 'red' } 'operator' = { fg = 'blue' }
'punctuation.bracket' = { fg = 'blue' }
'punctuation.delimiter' = { fg = 'white', modifiers = ['bold'] }
'string' = { fg = 'green' }
'tag' = { fg = 'cyan' }
'type' = { fg = 'blue' }
'variable' = { fg = 'cyan' }
'variable.parameter' = { fg = 'white' }
'markup.bold' = { fg = 'orange', modifiers = ['bold'] }
'markup.italic' = { fg = 'magenta', modifiers = ['italic'] }
'markup.heading' = { fg = 'red' } 'markup.heading' = { fg = 'red' }
'markup.list' = { fg = 'red' } 'markup.link' = { fg = 'orange' }
'markup.raw.inline' = { fg = 'green', bg = 'base4' }
'markup.raw.block' = { fg = 'green', bg = 'base4' }
'markup.link' = { fg = 'orange' }
'markup.link.url' = { fg = 'magenta' } 'markup.link.url' = { fg = 'magenta' }
'markup.link.text' = { fg = 'orange' } 'markup.link.text' = { fg = 'orange' }
'markup.link.label' = { fg = 'green' } 'markup.link.label' = { fg = 'green' }
'markup.list' = { fg = 'red' }
'markup.quote' = { fg = 'green', modifiers = ['italic'] } 'markup.quote' = { fg = 'green', modifiers = ['italic'] }
'markup.bold' = { fg = 'orange', modifiers = ['bold'] } 'markup.raw.block' = { fg = 'green', bg = 'base4' }
'markup.italic' = { fg = 'magenta', modifiers = ['italic'] } 'markup.raw.inline' = { fg = 'green', bg = 'base4' }
'diff.plus' = { fg = 'green' } 'diff.plus' = { fg = 'green' }
'diff.minus' = { fg = 'red' } 'diff.minus' = { fg = 'red' }
@ -61,19 +65,20 @@ namespace = { fg = 'red' }
'ui.menu.selected' = { bg = 'base3', fg = 'fg' } 'ui.menu.selected' = { bg = 'base3', fg = 'fg' }
'ui.selection' = { bg = 'base2' } 'ui.selection' = { bg = 'base2' }
warning = { fg = 'orange' } 'warning' = { fg = 'orange' }
error = { fg = 'red', modifiers = ['bold'] } 'error' = { fg = 'red', modifiers = ['bold'] }
info = { fg = 'blue', modifiers = ['bold'] } 'info' = { fg = 'blue', modifiers = ['bold'] }
hint = { fg = 'blue', modifiers = ['bold'] } 'hint' = { fg = 'blue', modifiers = ['bold'] }
'diagnostic'= { fg = 'red', modifiers = ['underlined'] } 'diagnostic'= { fg = 'red', modifiers = ['underlined'] }
'diagnostic.error'= { fg = 'red', modifiers = ['underlined'] }
'diagnostic.info'= { fg = 'blue', modifiers = ['underlined'] } 'diagnostic.info'= { fg = 'blue', modifiers = ['underlined'] }
'diagnostic.warning'= { fg = 'yellow', modifiers = ['underlined'] } 'diagnostic.warning'= { fg = 'yellow', modifiers = ['underlined'] }
'diagnostic.error'= { fg = 'red', modifiers = ['underlined'] }
'special' = { fg = 'orange' } 'special' = { fg = 'orange' }
[palette] [palette]
white = '#ffffff'
black = '#000000' black = '#000000'
red = '#D83441' red = '#D83441'
green = '#79D836' green = '#79D836'

Loading…
Cancel
Save