Color Scheme Changed

Updated color scheme
* A more neutral foreground
* A more neutral cyan
* A more neutral red

Updated emacs color scheme script
* Selection (region) face updated
master
lomna-dev 1 year ago
parent ff5d0debba
commit 3fd8cd50de

10
JSON

@ -3,22 +3,22 @@
"author": "", "author": "",
"color": [ "color": [
"#212125", "#212125",
"#bc2a2a", "#c24949",
"#3eca3e", "#3eca3e",
"#dcdc0f", "#dcdc0f",
"#6d6df3", "#6d6df3",
"#d068d0", "#d068d0",
"#0dcbcb", "#00cbcb",
"#e2e2e2", "#e2e2e2",
"#80776f", "#80776f",
"#bc2121", "#c25959",
"#3eca3e", "#3eca3e",
"#dcdc00", "#dcdc00",
"#915bf3", "#915bf3",
"#d040d0", "#d040d0",
"#00cbcb", "#78dada",
"#f5f5f5" "#f5f5f5"
], ],
"foreground": "#e0e892", "foreground": "#fcffdc",
"background": "#100f1f" "background": "#100f1f"
} }

@ -2,26 +2,26 @@ colors:
# Default colors # Default colors
primary: primary:
background: '0x100f1f' background: '0x100f1f'
foreground: '0xe0e892' foreground: '0xfcffdc'
# Normal colors # Normal colors
normal: normal:
black: '0x212125' black: '0x212125'
red: '0xbc2a2a' red: '0xc24949'
green: '0x3eca3e' green: '0x3eca3e'
yellow: '0xdcdc0f' yellow: '0xdcdc0f'
blue: '0x6d6df3' blue: '0x6d6df3'
magenta: '0xd068d0' magenta: '0xd068d0'
cyan: '0x0dcbcb' cyan: '0x00cbcb'
white: '0xe2e2e2' white: '0xe2e2e2'
# Bright colors # Bright colors
bright: bright:
black: '0x80776f' black: '0x80776f'
red: '0xbc2121' red: '0xc25959'
green: '0x3eca3e' green: '0x3eca3e'
yellow: '0xdcdc00' yellow: '0xdcdc00'
blue: '0x915bf3' blue: '0x915bf3'
magenta: '0xd040d0' magenta: '0xd040d0'
cyan: '0x00cbcb' cyan: '0x78dada'
white: '0xf5f5f5' white: '0xf5f5f5'

@ -10,8 +10,8 @@ print("""
;; Highlighting faces ;; Highlighting faces
`(fringe ((,class (:background "{bg}")))) `(fringe ((,class (:background "{bg}"))))
`(highlight ((,class (:background "{bg}" :underline t)))) `(highlight ((,class (:background "{bg}" :underline t))))
`(region ((t (:background ,"{blue}")) ;; background during selection, this tends to be weird so feel free to experiment
(t :inverse-video t))) `(region ((t (:background "{bright_black}" :foreground "{bright_white}"))))
`(secondary-selection ((,class (:background "{bg}")))) `(secondary-selection ((,class (:background "{bg}"))))
`(isearch ((,class (:background "{bg}" :foreground "{blue}" :weight bold)))) `(isearch ((,class (:background "{bg}" :foreground "{blue}" :weight bold))))
`(isearch-fail ((t (:foreground "{fg}" :background "{red}")))) `(isearch-fail ((t (:foreground "{fg}" :background "{red}"))))
@ -30,7 +30,7 @@ print("""
`(font-lock-function-name-face ((,class (:foreground "{cyan}")))) `(font-lock-function-name-face ((,class (:foreground "{cyan}"))))
`(font-lock-keyword-face ((,class (:foreground "{bright_red}" :weight bold)))) `(font-lock-keyword-face ((,class (:foreground "{bright_red}" :weight bold))))
`(font-lock-string-face ((,class (:foreground "{green}")))) `(font-lock-string-face ((,class (:foreground "{green}"))))
`(font-lock-type-face ((,class (:foreground "{yellow}" :weight bold)))) `(font-lock-type-face ((,class (:foreground "{bright_yellow}" :weight bold))))
`(font-lock-variable-name-face ((,class (:foreground "{white}")))) `(font-lock-variable-name-face ((,class (:foreground "{white}"))))
`(font-lock-warning-face ((,class (:foreground "{red}" :weight bold)))) `(font-lock-warning-face ((,class (:foreground "{red}" :weight bold))))
;; Button and link faces ;; Button and link faces
@ -91,4 +91,4 @@ print("""
`(message-separator ((,class (:foreground "{white}" :weight bold)))))) `(message-separator ((,class (:foreground "{white}" :weight bold))))))
(provide-theme '{theme_name}) (provide-theme '{theme_name})
""".format(theme_name="anmol-test",bg="#100f1f", fg="#e0e892", black="#212125", red="#bc2a2a", green="#3eca3e", yellow="#dcdc0f", blue="#6d6df3", magenta="#d068d0", cyan="#0dcbcb", white="#e2e2e2", bright_black="#80776f", bright_red="#bc2121", bright_green="#3eca3e", bright_yellow="#dcdc00", bright_blue="#915bf3", bright_magenta="#d040d0", bright_cyan="#00cbcb", bright_white="#f5f5f5")) """.format(theme_name="anmol-test",bg="#100f1f", fg="#fcffdc", black="#212125", red="#c24949", green="#3eca3e", yellow="#dcdc0f", blue="#6d6df3", magenta="#d068d0", cyan="#00cbcb", white="#e2e2e2", bright_black="#80776f", bright_red="#c25959", bright_green="#3eca3e", bright_yellow="#dcdc00", bright_blue="#915bf3", bright_magenta="#d040d0", bright_cyan="#78dada", bright_white="#f5f5f5"))

@ -1,15 +1,15 @@
! special ! special
*.foreground: #e0e892 *.foreground: #fcffdc
*.background: #100f1f *.background: #100f1f
*.cursorColor: #e0e892 *.cursorColor: #fcffdc
! black ! black
*.color0: #212125 *.color0: #212125
*.color8: #80776f *.color8: #80776f
! red ! red
*.color1: #bc2a2a *.color1: #c24949
*.color9: #bc2121 *.color9: #c25959
! green ! green
*.color2: #3eca3e *.color2: #3eca3e
@ -28,8 +28,8 @@
*.color13: #d040d0 *.color13: #d040d0
! cyan ! cyan
*.color6: #0dcbcb *.color6: #00cbcb
*.color14: #00cbcb *.color14: #78dada
! white ! white
*.color7: #e2e2e2 *.color7: #e2e2e2

Loading…
Cancel
Save