-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
87 lines (86 loc) · 1.91 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
cursor: {
auto: 'auto',
default: 'default',
pointer: 'pointer',
},
borderRadius: {
'lg': '1.625rem',
},
borderWidth: {
'1': '1px',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
},
fontWeight: {
thin: 200,
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
extrabold: 1000,
},
borderRadius: {
'sm': '0.125rem',
'md': '0.375rem',
'lg': '0.5rem',
'full': '9999px',
'4xl': '3.5rem',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#1A1A1A',
white: colors.white,
gray: colors.gray,
red: colors.red,
yellow: colors.amber,
blue: colors.blue,
purple: "#51256E",
credmarkpurple: "#3b0065",
lightpurple: "#7C5498",
linepurple: "#8966A3",
pink: "#DE1A60",
lightpink:"#FCECF3",
pinkextralight: "#FDFAFC",
lightgray: "#FCFAFB",
extralightgray: '#686868',
bggray: '#F4F4F6',
lightpurple: "#8966A3",
mediumblue: "#005488",
green: "#00FFB3",
mutedGreen: '#00D696',
gradient: "background: radial-gradient(100% 5367.15% at 0% 50%, #9500FF 0%, #00DC9A 77.6%);",
},
extend: {
screens: {
small: "415px",
medium: "560px",
large: "960px",
xlarge: "1500px",
}
},
variants: {
extend: {
fontWeight: ['hover', 'focus'],
borderColor: ['hover', 'active'],
borderWidth: ['hover', 'focus'],
animation: ['hover', 'focus'],
animation: ['motion-safe'],
backdropBlur: ['hover', 'focus'],
},
},
plugins: [],
}
}