create light color palette

This commit is contained in:
John Bowdre 2024-08-15 15:36:46 -05:00
parent b9a8cdc849
commit 64ad1416d3

View file

@ -2,20 +2,35 @@
*/ */
:root { :root {
--base00: #090909; /* bg */ /* dark theme colors */
--base01: #1c1c1c; /* off-bg */ --dark-base00: #090909; /* bg */
--base02: #292929; /* inner-bg */ --dark-base01: #1c1c1c; /* off-bg */
--base03: #6d6c6c; /* muted */ --dark-base02: #292929; /* inner-bg */
--base04: #abaaaa; /* off-fg */ --dark-base03: #6d6c6c; /* muted */
--base05: #d8d8d8; /* fg */ --dark-base04: #abaaaa; /* off-fg */
--base06: #75f558; /* code */ --dark-base05: #d8d8d8; /* fg */
--base07: #5f8700; /* user prompt */ --dark-base06: #75f558; /* code */
--base08: #ab4642; /* root prompt */ --dark-base07: #5f8700; /* user prompt */
--base09: #dc9656; --dark-base08: #ab4642; /* root prompt */
--base0A: #f7ca88; /* highlight */ --dark-base09: #abaaaa; /* logo text */
--base0B: #682523; /* logo */ --dark-base0A: #f7ca88; /* highlight */
--base0C: #ab2321; /* hover */ --dark-base0B: #682523; /* logo */
--base0D: #d36060; /* link */ --dark-base0C: #ab2321; /* hover */
--base0E: #ba8baf; --dark-base0D: #d36060; /* link */
--base0F: #a16946;
/* light theme colors */
--light-base00: #ffffff; /* bg */
--light-base01: #f0f0f0; /* off-bg */
--light-base02: #dbdbdb; /* inner-bg */
--light-base03: #909090; /* muted */
--light-base04: #707070; /* off-fg */
--light-base05: #303030; /* fg */
--light-base06: #2a8f1f; /* code */
--light-base07: #3f5900; /* user prompt */
--light-base08: #c23d3d; /* root prompt */
--light-base09: #f0f0f0; /* logo-text */
--light-base0A: #d4a960; /* highlight */
--light-base0B: #af3a37; /* logo */
--light-base0C: #c62a28; /* hover */
--light-base0D: #a04545; /* link */
} }