Skip to content

Commit

Permalink
Merge pull request #3 from rlaboiss/light-theme
Browse files Browse the repository at this point in the history
Use darker colors in light theme
  • Loading branch information
jcs090218 authored Jan 25, 2024
2 parents 1f859ec + af8ffd3 commit 44033d2
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions rainbow-csv.el
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,29 @@
:link '(url-link :tag "Repository" "https://github.com/emacs-vs/rainbow-csv"))

(defcustom rainbow-csv-colors
'("#CCCCCC"
"#569CD6"
"#DCCD79"
"#529955"
"#CE834A"
"#8CDCFE"
"#B5C078"
"#4EC9B0"
"#569CD6"
"#F44747")
(cond
((eq 'light (frame-parameter nil 'background-mode))
'("#333333"
"#A96329"
"#233286"
"#AD66AA"
"#317CB5"
"#732301"
"#4A3F87"
"#B1364F"
"#A96329"
"#0BB8B8"))
(t
'("#CCCCCC"
"#569CD6"
"#DCCD79"
"#529955"
"#CE834A"
"#8CDCFE"
"#B5C078"
"#4EC9B0"
"#569CD6"
"#F44747")))
"List of colors to use."
:type 'list
:group 'rainbow-csv)
Expand Down

0 comments on commit 44033d2

Please sign in to comment.