-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (56 loc) · 1.42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.tsx",
"./common/components/**/*.tsx"
],
plugins: [
require('tailwindcss-debug-screens'),
],
theme: {
colors: {
white: '#ffffff',
gray: {
draw: {
"1": '#f9f9f9',
"2": '#f7f7f7',
"3": '#f5f5f5',
"4": '#f3f3f3',
"5": '#f1f1f1'
},
font: '#494949'
},
black: '#000000',
cyan: '#2386CD',
magenta: '#F47EBD',
yellow: '#F2C89A',
transparent: 'transparent',
},
fontFamily: {
inter: 'Inter, sans-serif',
satoshi: 'Satoshi, sans-serif',
roboto: '"Roboto Mono", monospace',
twcen: '"Tw Cen MT Std", sans-serif',
epilogue: '"Epilogue", sans-serif',
martian: '"Martian Mono", monospace'
},
screens: {
touch: { 'raw': '(pointer: coarse)' },
hoverable: { 'raw': '(hover: hover) and (pointer: fine)' },
xs: '400px',
sm: '600px',
md: '1100px'
},
extend: {
transitionProperty: {
width: 'width',
height: 'height',
'width-opacity': 'width, opacity',
'max-width-opacity': 'max-width, opacity',
'max-width-opacity-visibility': 'max-width, opacity, visibility',
'height-opacity': 'height, opacity',
'max-height-opacity-visibility': 'max-height, opacity, visibility',
}
}
}
}