forked from drowl87/hextra_mirror
		
	 e71887d00e
			
		
	
	e71887d00e
	
	
	
		
			
			feat: codeblock highlight feat: dark mode for highlight feat: copy button for code block feat: support katex math rendering
		
			
				
	
	
		
			27 lines
		
	
	
		
			456 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			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;
 | |
| }
 |