Skip to content

Commit

Permalink
feat: Light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed Jul 21, 2023
1 parent a64ba29 commit 5173e2d
Showing 1 changed file with 37 additions and 32 deletions.
69 changes: 37 additions & 32 deletions cupcake/config/light.toml
Original file line number Diff line number Diff line change
@@ -1,53 +1,58 @@
background = "#1f1f1f"
foreground = "#cccccc"
border = "#2a2a2a"
# Cupcake Dark theme
# author: billyeatcookies
# NOTE: all fields are mandatory and shall only modified, not removed

background = "white"
foreground = "#424242"
border = "#dfdfdf"


[editor]
selection = '#323232'
currentword = "grey"
currentline = "grey"
found = "yellow"
foundcurrent = "green"
selection = "#add6ff"
currentword = "#d5d5d5"
currentline = "#eeeeee"
found = "#f8c9ab"
foundcurrent = "#a8ac94"

[autocomplete]
background = '#1f1f1f'
foreground = '#a9a9a9'
activebackground = '#1f1f1f'
activeforeground = '#e0e0e0'
background = "#f8f8f8"
foreground = "#424242"
activebackground = "#e8e8e8"
activeforeground = "#black"

[breadcrumbs]
background = '#1f1f1f'
foreground = '#a9a9a9'
activebackground = '#1f1f1f'
activeforeground = '#e0e0e0'
background = "white"
foreground = "#424242"
activebackground = "white"
activeforeground = "black"

[linenumbers]
background = '#1f1f1f'
foreground = "#6e7681"
activebackground = '#1f1f1f'
activeforeground = "#cccccc"
background = "white"
foreground = "#727681"
activebackground = "white"
activeforeground = "#171184"

[minimap]
background = '#1f1f1f'
background = "white"

[diffeditor]
notexist = "grey"
added = "#23863633"
addedword = "#2386364d"
removed = "#da363333"
removedword = "#da36334d"
notexist = "#d3d3d3"
added = "#f8d6d6"
addedword = "#9ecaa6"
removed = "#d3e7d6"
removedword = "#efa6a5"

[scrollbar]
background = "#484f5833"
activeBackground = "#6e768187"
background = "white"
activeBackground = "#b2b6bc"

[tree]
background = "red"
foreground = "white"
activebackground= "green"
background = "#f8f8f8"
foreground = "#424242"
activebackground= "#e8e8e8"


# following is used for syntax highlighting
[syntax]
"Keyword" = "#0000ff"
"Keyword.Constant" = "#0000ff"
Expand Down Expand Up @@ -113,5 +118,5 @@ activebackground= "green"
"Operator" = "#cccccc"
"Operator.Word" = "#cccccc"

"Punctuation" = "#3b3b3b"
"Punctuation" = "#424242"
"Punctuation.Marker" = "#3b3b3b"

0 comments on commit 5173e2d

Please sign in to comment.