-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.19 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
base: 'var(--color-base)',
surface: 'var(--color-surface)',
'surface-hover': 'var(--color-surface-hover)',
card: 'var(--color-card)',
'card-hover': 'var(--color-card-hover)',
foreground: 'var(--color-foreground)',
'fg-secondary': 'var(--color-fg-secondary)',
muted: 'var(--color-muted)',
dim: 'var(--color-dim)',
'b-border': 'var(--color-border)',
'input-bg': 'var(--color-input-bg)',
sidebar: 'var(--color-sidebar)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
animation: {
float: 'float 6s ease-in-out infinite',
'float-slow': 'float 9s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};