-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
40 lines (39 loc) · 1015 Bytes
/
tailwind.config.mjs
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
import typography from '@tailwindcss/typography';
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
background: 'hsl(var(--color-background))',
foreground: {
DEFAULT: 'hsl(var(--color-foreground))',
highlight: 'hsl(var(--color-foreground-highlight))',
},
overlay: {
DEFAULT: 'hsl(var(--color-overlay))',
inverted: 'hsl(var(--color-overlay-inverted))',
}
},
typography: {
DEFAULT: {
css: {
'code::before': {
content: '""',
},
'code::after': {
content: '""',
},
},
},
},
},
},
plugins: [
typography(),
iconsPlugin({
collections: getIconCollections(['simple-icons']),
}),
],
};