-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.47 KB
/
tailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import {heroui} from "@heroui/theme"
import { DEFAULT_CIPHERS } from 'tls'
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./mdx-components.tsx',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
},
// typography: {
// DEFAULT: {
// css: {
// code: {
// color: '#86e1fc',
// '&::before': { content: `unset !important` },
// '&::after': { content: `unset !important` },
// fontWeight: 'normal',
// },
// 'a code': {
// fontSize: '1em',
// },
// '[data-rehype-pretty-code-fragment]:nth-of-type(2) pre': {
// '[data-line]::before': {
// content: 'counter(line)',
// counterIncrement: 'line',
// display: 'inline-block',
// width: '1rem',
// marginRight: '1rem',
// textAlign: 'right',
// // color: colors.slate[600],
// },
// '[data-highlighted-line]::before': {
// // color: colors.slate[400],
// },
// },
// }
// }
// }
},
},
darkMode: "class",
plugins: [heroui()],
}