Files
formbricks-formbricks/apps/docs/styles/tailwind.css
Matti Nannt 5c265aacb9 feat: full docs revamp for Formbricks 2.0 (#2568)
Co-authored-by: ShubhamPalriwala <spalriwalau@gmail.com>
2024-05-07 11:06:42 +02:00

22 lines
637 B
CSS

@layer base {
:root {
--shiki-color-text: theme("colors.white");
--shiki-token-constant: theme("colors.teal.300");
--shiki-token-string: theme("colors.teal.300");
--shiki-token-comment: theme("colors.slate.500");
--shiki-token-keyword: theme("colors.sky.300");
--shiki-token-parameter: theme("colors.pink.300");
--shiki-token-function: theme("colors.violet.300");
--shiki-token-string-expression: theme("colors.teal.300");
--shiki-token-punctuation: theme("colors.slate.200");
}
[inert] ::-webkit-scrollbar {
display: none;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;