Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
kirawi committed Aug 20, 2021
1 parent f60b549 commit 8087f0b
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions runtime/themes/monokai.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# Author: Shafkath Shuhan <shafkathshuhannyc@gmail.com>

"namespace" = { fg = "type" }
"module" = { fg = "type" }

"type" = { fg = "type" }
"type.builtin" = { fg = "type" }
"type.enum.variant" = { fg = "constant" }
"constructor" = { fg = "constant" }
"property" = { fg = "variable" }

"keyword" = { fg = "keyword" }
"keyword.directive" = { fg = "keyword" }
"keyword.control" = { fg = "keyword" }
"label" = { fg = "keyword" }

"special" = { fg = "text" }
"operator" = { fg = "text" }

"punctuation" = { fg = "text" }
"punctuation.delimiter" = { fg = "text" }

"variable" = { fg = "variable" }
"variable.parameter" = { fg = "#fd971f" }
"variable.builtin" = { fg = "keyword" }
"constant" = { fg = "variable" }
"constant.builtin" = { fg = "keyword" }

"function" = { fg = "fn_declaration" }
"function.builtin" = { fg = "fn_declaration" }
"function.macro" = { fg = "keyword" }
"attribute" = { fg = "fn_declaration" }

"comment" = { fg = "#88846F" }

"string" = { fg = "#e6db74" }
"number" = { fg = "#ae81ff" }
"escape" = { fg = "#ae81ff" }

"ui.background" = { fg = "text", bg = "background" }

"ui.window" = { bg = "widget" }
"ui.popup" = { bg = "widget" }
"ui.help" = { bg = "widget" }
"ui.menu.selected" = { bg = "widget" }

"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
"ui.cursor.primary" = { bg = "cursor" }
"ui.cursor.match" = { bg = "inactive_cursor", modifiers = ["reversed"] }

"ui.selection" = { bg = "#878b91" }
"ui.selection.primary" = { bg = "#575b61" } # editor.selectionHighlightBackground

"ui.linenr" = { fg = "#90908a" } # editorLineNumber.foreground
"ui.linenr.selected" = { fg = "#c2c2bf" } # editorLineNumber.activeForeground

"ui.statusline" = { fg = "active_text", bg = "#75715e" } # activityBarBadge.background
"ui.statusline.inactive" = { fg = "active_text", bg = "#75715e" }

"ui.text" = { fg = "text", bg = "background" }
"ui.text.focus" = { fg = "active_text" }

"warning" = { fg = "#cca700" }
"error" = { fg = "#f48771" }
"info" = { fg = "#75beff" }
"hint" = { fg = "#eeeeeeb3" }

diagnostic = { modifiers = ["underlined"] }

[palette]
type = "#A6E22E" # entity.name.type
keyword = "#F92672"
regex = "#CE9178" # string
special = "#C586C0" # debugTokenExpression.name
variable = "#F8F8F2"
fn_declaration = "#A6E22E" # entity.name.function
# constant = "#AE81FF" # variable.other.constant

background = "#272822" # editor.background
text = "#f8f8f2" # editor.foreground
active_text = "#ffffff"
cursor = "#a6a6a6" # input.placeholderForeground
inactive_cursor = "#878b91" # editor.inactiveSelectionBackground
widget = "#1e1f1c" # menu.background

0 comments on commit 8087f0b

Please sign in to comment.