From 16d751d928c82a299ce3dee3772f1ea4a6ff70d0 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 29 May 2024 07:49:50 +0530 Subject: [PATCH] feat(style): use astro root vars instead of our hex --- src/styles/lua.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/styles/lua.css b/src/styles/lua.css index f91e1f0..29626e7 100644 --- a/src/styles/lua.css +++ b/src/styles/lua.css @@ -1,27 +1,27 @@ span.declaration { font-size: 19px; font-family: monospace; + /* color: var(--astro-code-token-punctuation) */ } div.declaration { font-size: 0; - /* background-color: #23262f; */ border-radius: 2%; padding: 1%; } .method { - color: #b0d86f; + color: var(--astro-code-token-function); } .class { - color: #ffcb8b; + color: var(--astro-code-token-constant); } .arg { - color: #7bdbca; + color: var(--astro-code-token-parameter); } .type { - color: #82aadd; + color: var(--astro-code-token-keyword); }