tailwind.css

 1@layer base {
 2  :root {
 3    --shiki-color-text: theme('colors.white');
 4    --shiki-token-constant: theme('colors.emerald.300');
 5    --shiki-token-string: theme('colors.emerald.300');
 6    --shiki-token-comment: theme('colors.zinc.500');
 7    --shiki-token-keyword: theme('colors.sky.300');
 8    --shiki-token-parameter: theme('colors.pink.300');
 9    --shiki-token-function: theme('colors.violet.300');
10    --shiki-token-string-expression: theme('colors.emerald.300');
11    --shiki-token-punctuation: theme('colors.zinc.200');
12  }
13
14  [inert] ::-webkit-scrollbar {
15    display: none;
16  }
17}
18
19@tailwind base;
20@tailwind components;
21@tailwind utilities;