-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.11 KB
/
tailwind.config.js
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
const { typewindTransforms } = require('typewind/transform');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ['./index.html', './src/**/*.{ts,tsx}'],
transform: typewindTransforms,
},
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
neutral: {
0: '#FFFFFF',
400: '#898896',
700: '#27262C',
800: '#131316',
900: '#050505',
},
primary: '#F5A5FE',
critical: '#FFB1B9',
},
fontFamily: {
display: ['Inter Display', 'Inter', 'sans-serif'],
sans: ['Inter', 'sans-serif'],
},
extend: {
backgroundImage: {
congrats: "url('/congrats-modal-bg.svg')",
},
},
},
daisyui: {
// themes: ["dark"]
themes: [
{
wentokens: {
'primary': '#F5A5FE',
'secondary': '#050505',
'accent': '#F5A5FE',
'neutral': '#666472',
'neutral-900': '#050505',
'base-100': '#ffffff',
},
},
],
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
};