diff options
author | 2021-07-21 18:02:45 -0500 | |
---|---|---|
committer | 2021-07-21 18:02:45 -0500 | |
commit | ba6b47eda7589b4794b52218457229bb04e7d139 (patch) | |
tree | e14948d60546edc693bf17e5a3363d5ee3a988fc /docs/src/components/Note.astro | |
parent | 1085542d9d559c9bb94ad4e918970763d28947f1 (diff) | |
download | astro-ba6b47eda7589b4794b52218457229bb04e7d139.tar.gz astro-ba6b47eda7589b4794b52218457229bb04e7d139.tar.zst astro-ba6b47eda7589b4794b52218457229bb04e7d139.zip |
Hsla composition (#790)
* update theme colors to hsla
* Add light navbar bg color
* remove duplicate color assignments in Note.astro
* clean up
Clean up css variables and document use of hsla colors
Diffstat (limited to 'docs/src/components/Note.astro')
-rw-r--r-- | docs/src/components/Note.astro | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/src/components/Note.astro b/docs/src/components/Note.astro index c3ae29cb4..a9c2ebf51 100644 --- a/docs/src/components/Note.astro +++ b/docs/src/components/Note.astro @@ -35,14 +35,11 @@ const { type = 'tip', title } = Astro.props; .note.type-tip { --color: var(--color-green); - --color-rgb: var(--color-green-rgb); } .note.type-warning { --color: var(--color-yellow); - --color-rgb: var(--color-yellow-rgb); } .note.type-error { --color: var(--color-red); - --color-rgb: var(--color-red-rgb); } </style> |