diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-01 00:35:10 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-01 20:35:28 -0400 |
commit | c83e95c885bb72ee6882b5db53a98341830a96fa (patch) | |
tree | e048be5d23f7511482976db05a1ada29cc4e520e /src/content/dependencies | |
parent | f20bcc48a90f277c53c266fd813190eef25df445 (diff) |
css, content: various color, depth & balance adjustments
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/generateColorStyleVariables.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/content/dependencies/generateColorStyleVariables.js b/src/content/dependencies/generateColorStyleVariables.js index d1c121fe..069d85dd 100644 --- a/src/content/dependencies/generateColorStyleVariables.js +++ b/src/content/dependencies/generateColorStyleVariables.js @@ -11,6 +11,7 @@ export default { 'any-content', 'image-box', 'page-root', + 'image-box', 'primary-only'), default: 'any-content', @@ -29,7 +30,8 @@ export default { primary, dark, dim, - dimGhost, + deep, + deepGhost, bg, bgBlack, shadow, @@ -39,7 +41,8 @@ export default { `--primary-color: ${primary}`, `--dark-color: ${dark}`, `--dim-color: ${dim}`, - `--dim-ghost-color: ${dimGhost}`, + `--deep-color: ${deep}`, + `--deep-ghost-color: ${deepGhost}`, `--bg-color: ${bg}`, `--bg-black-color: ${bgBlack}`, `--shadow-color: ${shadow}`, @@ -56,6 +59,8 @@ export default { selectedProperties = [ `--primary-color: ${primary}`, `--dim-color: ${dim}`, + `--deep-color: ${deep}`, + `--bg-black-color: ${bgBlack}`, ]; break; |