-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
117 lines (116 loc) · 3.94 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./layouts/**/*.html', './content/**/*.md'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'montserrat': ['Montserrat', 'sans-serif'],
'lemon': ['LEMON', 'sans-serif'],
'courier': ['Courier', 'sans-serif'],
},
minHeight: {
'36': '144px',
'40': '160px',
'44': '176px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
blue: colors.blue,
gray: colors.gray,
green: colors.green,
indigo: colors.indigo,
purple: colors.purple,
rose: colors.rose,
sky: colors.sky,
slate: colors.slate,
teal: colors.teal,
white: colors.white,
yellow: colors.yellow,
red: colors.red,
orange: colors.orange,
slate: colors.slate,
'icon': '#32b8bb',
'icon-hi': '#31f2f6',
'icon-lo': '#2ca9b7',
'icon-dark': '#087083',
'rookteal-dark': '#357488',
'rookteal-light': '#5FB7BC',
'rookteal-darktwo': '#4EAAC1',
'xpurple': '#7d7490',
'xindigo': '#4a3d60',
'xgreen': '#34b8bb',
'xteal': '#5cffe3',
'xgray': '#5A6B80',
'xgray-dark': '#222B2E',
},
screens: {
'xs': '360px',
'3xl': '1920px',
...defaultTheme.screens,
},
boxShadow: {
'3xl': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
'4xl': '0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
'5xl': '0 25px 50px -12px rgba(0, 0, 0, 0.1)',
},
cursor: {
'xcall': 'url(/assets/images/xcall_orb2.png), pointer',
},
backgroundImage: {
conic: 'conic-gradient(var(--tw-gradient-stops))',
'conic-to-t': 'conic-gradient(at top, var(--tw-gradient-stops))',
'conic-to-b': 'conic-gradient(at bottom, var(--tw-gradient-stops))',
'conic-to-l': 'conic-gradient(at left, var(--tw-gradient-stops))',
'conic-to-r': 'conic-gradient(at right, var(--tw-gradient-stops))',
'conic-to-tl': 'conic-gradient(at top left, var(--tw-gradient-stops))',
'conic-to-tr': 'conic-gradient(at top right, var(--tw-gradient-stops))',
'conic-to-bl':
'conic-gradient(at bottom left, var(--tw-gradient-stops))',
'conic-to-br':
'conic-gradient(at bottom right, var(--tw-gradient-stops))',
radial: 'radial-gradient(ellipse at center, var(--tw-gradient-stops))',
'radial-at-t':
'radial-gradient(ellipse at top, var(--tw-gradient-stops))',
'radial-at-b':
'radial-gradient(ellipse at bottom, var(--tw-gradient-stops))',
'radial-at-l':
'radial-gradient(ellipse at left, var(--tw-gradient-stops))',
'radial-at-r':
'radial-gradient(ellipse at right, var(--tw-gradient-stops))',
'radial-at-tl':
'radial-gradient(ellipse at top left, var(--tw-gradient-stops))',
'radial-at-tr':
'radial-gradient(ellipse at top right, var(--tw-gradient-stops))',
'radial-at-bl':
'radial-gradient(ellipse at bottom left, var(--tw-gradient-stops))',
'radial-at-br':
'radial-gradient(ellipse at bottom right, var(--tw-gradient-stops))',
'left-to-right-gray-white-gray':
'repeating-linear-gradient(to right, #F8FAFC, #FFFFFF, #F8FAFC)',
},
keyframes: {
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
}
},
animation: {
"fade-in-delay": "fade-in 1.5s ease-out both 3s",
}
},
},
scale: {
'-100': '-1',
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}