forked from statamic/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
164 lines (163 loc) · 5.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./resources/**/*.{html,js,vue,blade.php}',
'./tests/**/*.{html,vue,blade.php}'
],
theme: {
colors: {
transparent: 'transparent',
black: '#000000',
white: '#ffffff',
current: 'currentColor',
blue: {
100: '#eaf5ff',
200: '#abd9ff',
300: '#82c5ff',
DEFAULT: '#43a9ff',
400: '#43a9ff',
500: '#2e9fff',
600: '#298fe6',
700: '#257fcc',
800: '#206fb3',
900: '#175080',
},
gray: {
100: '#fafcff',
200: '#f5f8fc',
300: '#eef2f6',
400: '#dde3e9',
500: '#c4ccd4',
600: '#a7b3be',
700: '#73808c',
750: '#354248',
775: '#2e393d',
800: '#1c2e36',
900: '#19292f',
950: '#141a1f',
DEFAULT: '#73808c',
},
orange: {
light: '#fcc062',
DEFAULT: '#f5a82f',
dark: '#e08a1e',
},
pink: {
light: '#ff5ba7',
DEFAULT: '#ff269e',
dark: '#e00095',
},
purple: {
light: '#e0b7ff',
DEFAULT: '#c471ed',
dark: '#a855cd',
},
yellow: {
light: '#ffffe0',
DEFAULT: '#fbfab0',
dark: '#e8dc1e',
},
amber: colors.amber,
green: colors.green,
red: colors.red,
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
'2xl': '1440px',
},
extend: {
borderColor: {
DEFAULT: colors.gray[300],
},
borderWidth: {
'0': '0',
'3': '3px',
'6': '6px',
},
boxShadow: {
sm: '1px 2px 4px 0 rgba(0,0,0,.03)',
md: '0px 2px 6px -1px rgba(0,0,0,.1)',
DEFAULT: '0 0 0 1px rgba(49,49,93,.05), 0 2px 5px 0 rgba(49,49,93,.075), 0 1px 3px 0 rgba(49,49,93,.15)',
lg: '0 7px 14px 0 rgba(50,50,93,.1), 0 2px 8px 0 rgba(0,0,0,.075)',
xl: '0 12px 24px 0 rgba(50, 50, 93, .1), 0 10px 20px 0 rgba(0, 0, 0, .075)',
popover: '0 0 0 1px rgba(40,45,50,0.05), 0 0 0 1px rgba(40,45,50,0.05), 0 2px 7px 1px rgba(40,45,50,0.16)',
set: 'rgba(50,50,93,.15) 0 0 0 1px, rgba(50,50,93,.08) 0 2px 5px, rgba(0,0,0,.07) 0 1px 1.5px,rgba(0,0,0,.08) 0 1px 2px 0, transparent 0 0 0 0',
button: '0 1px 0 0 rgba(25,30,35,.05)',
inner: 'inset 0px 1px 1px 0px rgba(0,0,0,.05)',
},
fontFamily: {
serif: ['Georgia', 'serif'],
mono: ['Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
sans: ['Inter var', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue'],
},
fontSize: {
'5xs': '9px',
'4xs': '10px',
'3xs': '11px',
'2xs': '12px',
xs: '13px',
sm: '14px',
md: '15px',
base: '16px',
lg: '18px',
xl: '21px',
'2xl': '24px',
'3xl': '32px',
'4xl': '48px',
'5xl': '60px',
},
letterSpacing: {
normal: '-0.004em',
widest: '.15em',
},
minHeight: {
40: '10rem',
},
maxHeight: {
'screen-1/2': '50vh',
},
maxWidth: {
'3xs': '5rem',
'2xs': '10rem',
'xs': '20rem',
'sm': '30rem',
'md': '40rem',
'lg': '50rem',
'xl': '60rem',
'2xl': '70rem',
'3xl': '80rem',
'4xl': '90rem',
'5xl': '100rem',
'full': '100%',
},
spacing: {
13: '3.25rem',
30: '7.5rem',
55: '13.75rem',
},
width: {
128: '32rem',
160: '40rem',
240: '60rem',
},
zIndex: {
1: '1',
2: '2',
3: '3',
5: '5',
200: '200',
top: '1001',
max: '9999',
auto: 'auto',
},
},
},
plugins: [
require('@tailwindcss/container-queries'),
require('@tailwindcss/typography'),
],
important: true,
}