2024-02-08 22:06:48 +00:00
|
|
|
(define-configuration browser
|
|
|
|
((theme
|
|
|
|
(make-instance
|
|
|
|
'theme:theme
|
|
|
|
:dark-p t
|
|
|
|
:font-family "Iosevka Nerd Font"
|
|
|
|
:monospace-font-family "Iosevka Nerd Font"
|
|
|
|
:text-color "#{{base05-hex}}"
|
|
|
|
:text-color+ "#{{base05-hex}}"
|
|
|
|
:text-color- "#{{base05-hex}}"
|
|
|
|
:contrast-text-color "#{{base00-hex}}"
|
|
|
|
:background-color "#{{base00-hex}}"
|
|
|
|
:background-color+ "#{{base00-hex}}"
|
|
|
|
:background-color- "#{{base00-hex}}"
|
|
|
|
:on-background-color "#{{base05-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:accent-color "#{{base0E-hex}}"
|
|
|
|
:accent-color+ "#{{base0E-hex}}"
|
|
|
|
:accent-color- "#{{base0E-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-accent-color "#{{base00-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:primary-color "#{{base0E-hex}}"
|
|
|
|
:primary-color+ "#{{base0E-hex}}"
|
|
|
|
:primary-color- "#{{base0E-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-primary-color "#{{base00-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:secondary-color "#{{base03-hex}}"
|
|
|
|
:secondary-color+ "#{{base03-hex}}"
|
|
|
|
:secondary-color- "#{{base03-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-secondary-color "#{{base05-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:warning-color "#{{base08-hex}}"
|
|
|
|
:warning-color+ "#{{base08-hex}}"
|
|
|
|
:warning-color- "#{{base08-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-warning-color "#{{base00-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:highlight-color "#{{base0A-hex}}"
|
|
|
|
:highlight-color+ "#{{base0A-hex}}"
|
|
|
|
:highlight-color- "#{{base0A-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-highlight-color "#{{base00-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:action-color "#{{base0D-hex}}"
|
|
|
|
:action-color+ "#{{base0D-hex}}"
|
|
|
|
:action-color- "#{{base0D-hex}}"
|
2024-02-08 22:06:48 +00:00
|
|
|
:on-action-color "#{{base00-hex}}"
|
2024-02-09 07:06:58 +00:00
|
|
|
:codeblock-color "#{{base01-hex}}"
|
|
|
|
:codeblock-color+ "#{{base01-hex}}"
|
|
|
|
:codeblock-color- "#{{base01-hex}}"
|
|
|
|
:on-codeblock-color "#{{base05-hex}}"))))
|