This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
80 lines (79 loc) · 2.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const {colors} = require("tailwindcss/colors")
const {fontFamily} = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: [
'./src/pages/**/*.{ts,tsx}',
'./src/components/**/*.{ts,tsx}',
'./src/app/**/*.{ts,tsx}',
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
data: {
checked: 'checked',
selected: 'selected',
disabled: 'disabled',
highlighted: 'highlighted',
},
extend: {
boxShadow: {
'md': '0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06)',
},
fontFamily: {
sans: ["var(--font-inter)", ...fontFamily.sans],
},
colors: {
...colors,
brand: {
50: '#f2f0ff',
100: '#eeebff',
200: '#d4d0ff',
300: '#c7c2ff',
400: '#9f92ff',
500: '#6152df',
600: '#5243cb',
700: '#3f2eb2',
800: '#312887',
900: "#231c6b",
DEFAULT: "#6152df",
},
gray: {
50: '#FAFAFA',
100: '#F5F5F5',
200: '#E5E5E5',
300: '#D4D4D4',
400: '#A3A3A3',
500: '#737373',
600: '#525252',
700: '#404040',
800: '#262626',
900: "#171717",
DEFAULT: "#737373",
},
green: {
50: '#e6f7ea',
100: '#cfead6',
200: '#48cf95',
300: '#35c989',
400: '#30b47c',
500: '#258c60',
600: '#1a6444',
700: '#154f37',
800: '#103b29',
900: '#05130d',
},
},
},
},
plugins: [require("@tailwindcss/typography"), require('@tailwindcss/forms'), require('@headlessui/tailwindcss'), require('tailwind-scrollbar-hide')],
}