Skip to content

Commit

Permalink
fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrobino committed Sep 5, 2024
1 parent 2297579 commit 4a5984f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/docs/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions apps/docs/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down

0 comments on commit 4a5984f

Please sign in to comment.