From 4a5984f6364b226ff6dd41a559cb3a1673b4d6fc Mon Sep 17 00:00:00 2001 From: rossrobino Date: Thu, 5 Sep 2024 16:16:44 -0400 Subject: [PATCH] fix colors --- apps/docs/src/style.css | 16 ++++++++-------- apps/docs/tailwind.config.ts | 1 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/apps/docs/src/style.css b/apps/docs/src/style.css index de10925..895f93f 100644 --- a/apps/docs/src/style.css +++ b/apps/docs/src/style.css @@ -6,23 +6,23 @@ @layer base { :root { - --base: theme(colors.slate.500); + --base: theme(colors.slate.600); --accent: theme(colors.teal.700); --destructive: theme(colors.rose.700); pre, blockquote { - --shiki-foreground: theme(colors.slate.200); - --shiki-background: theme(colors.slate.950); - --shiki-token-constant: theme(colors.slate.50); + --shiki-foreground: theme(colors.base.200); + --shiki-background: theme(colors.base.900); + --shiki-token-constant: theme(colors.base.50); --shiki-token-string: theme(colors.sky.200); - --shiki-token-comment: theme(colors.slate.500); + --shiki-token-comment: theme(colors.base.500); --shiki-token-keyword: theme(colors.teal.300); - --shiki-token-parameter: theme(colors.slate.300); + --shiki-token-parameter: theme(colors.base.300); --shiki-token-function: theme(colors.violet.300); --shiki-token-string-expression: theme(colors.sky.300); - --shiki-token-punctuation: theme(colors.slate.300); - --shiki-token-link: theme(colors.slate.300); + --shiki-token-punctuation: theme(colors.base.300); + --shiki-token-link: theme(colors.base.300); margin-inline: -1.5rem; border-radius: 0; diff --git a/apps/docs/tailwind.config.ts b/apps/docs/tailwind.config.ts index e4adf2e..26b846f 100644 --- a/apps/docs/tailwind.config.ts +++ b/apps/docs/tailwind.config.ts @@ -14,6 +14,7 @@ export default { foreground: "var(--heading-foreground)", }, base: { + 50: "var(--base-50)", 100: "var(--base-100)", 200: "var(--base-200)", 300: "var(--base-300)",