hextra/assets/css/styles.css
Xin e71887d00e feat: support mermaid
feat: codeblock highlight

feat: dark mode for highlight

feat: copy button for code block

feat: support katex math rendering
2023-08-16 20:39:41 +01:00

27 lines
456 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import "typography.css";
@import "highlight.css";
@import "components/cards.css";
@import "components/steps.css";
html {
@apply text-base antialiased;
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1;
-webkit-tap-highlight-color: transparent;
}
body {
@apply w-full bg-white dark:bg-dark dark:text-gray-100;
}
:root {
--primary-hue: 212deg;
}
.dark {
--primary-hue: 204deg;
}