-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
36 lines (36 loc) · 1.15 KB
/
tailwind.config.cjs
File metadata and controls
36 lines (36 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
text: 'var(--color-text)',
background: 'var(--color-background)',
primary: 'var(--color-primary)',
secondary: 'var(--color-secondary)',
accent: 'var(--color-accent)',
muted: 'var(--color-muted)',
'notion-blue': 'var(--color-blue)',
'notion-brown': 'var(--color-brown)',
'notion-gray': 'var(--color-gray)',
'notion-green': 'var(--color-green)',
'notion-orange': 'var(--color-orange)',
'notion-pink': 'var(--color-pink)',
'notion-purple': 'var(--color-purple)',
'notion-red': 'var(--color-red)',
'notion-yellow': 'var(--color-yellow)',
'notion-default': 'var(--color-default)'
},
keyframes: {
'fade-in': {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
}
},
animation: {
'fade-in': 'fade-in 0.5s ease-out forwards'
}
}
},
plugins: []
}