diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-17 17:13:51 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-17 18:03:52 +0100 |
| commit | 68138f0dcd8b3db2c23b31a20508726f245b5ba5 (patch) | |
| tree | 0d6a31cfd0adcba4d4cb08666bc262bed6cb89ea /src/components/Icons/CV/CV.module.scss | |
| parent | 86d3e30ef02585d5089dce3aa2757ca2cb4e4edf (diff) | |
feat: implement dark mode
Diffstat (limited to 'src/components/Icons/CV/CV.module.scss')
| -rw-r--r-- | src/components/Icons/CV/CV.module.scss | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/components/Icons/CV/CV.module.scss b/src/components/Icons/CV/CV.module.scss index e7b0e59..aaa8a1a 100644 --- a/src/components/Icons/CV/CV.module.scss +++ b/src/components/Icons/CV/CV.module.scss @@ -8,46 +8,47 @@ .lock { fill: var(--color-bg); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 3; } .lines { + fill: var(--color-fg); stroke-width: 4; } .seal-top { fill: var(--color-primary-lighter); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 2; } .seal-bottom { fill: var(--color-primary-lighter); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 2; } .diploma { fill: var(--color-bg); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 4; } .top { fill: var(--color-primary-lighter); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 4; } .handle { fill: var(--color-primary-lighter); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 3; } .bottom { fill: var(--color-primary); - stroke: var(--color-border-dark); + stroke: var(--color-primary-darker); stroke-width: 4; } |
