forked from amacss-utsc/amacss_site_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
126 lines (126 loc) · 3.11 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
darkMode: ['selector', '[data-theme="dark"]'],
plugins: [require('tailwindcss-animate'), require('@tailwindcss/typography')],
prefix: '',
safelist: [
'lg:col-span-4',
'lg:col-span-6',
'lg:col-span-8',
'lg:col-span-12',
'border-border',
'bg-card',
'border-error',
'bg-error/30',
'border-success',
'bg-success/30',
'border-warning',
'bg-warning/30',
],
theme: {
container: {
center: true,
padding: {
'2xl': '2rem',
DEFAULT: '1rem',
lg: '2rem',
md: '2rem',
sm: '1rem',
xl: '2rem',
},
screens: {
'2xl': '86rem',
lg: '64rem',
md: '48rem',
sm: '40rem',
xl: '80rem',
},
},
extend: {
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
bob: 'bob 2s ease-in-out infinite',
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
colors: {
white: "#FFFFFF",
gray: {
"02": "#F3F3F3",
"05": "#C8C9CB",
"10": "#A6A8AB",
"20": "#818488",
"30": "#616467",
"40": "#484A4D",
"50": "#343639",
"60": "#2C2E31",
"70": "#242629",
"80": "#1B1C1E",
"90": "#111213",
"100": "#08080A"
},
blue: {
"05": "#9ED0FF",
"10": "#71B8FE",
"20": "#2F8CFE",
"30": "#056FFA",
"40": "#0259CA",
"50": "#02459C",
}
},
fontFamily: {
mono: ['var(--font-geist-mono)'],
sans: ['var(--font-geist-sans)'],
montserrat: ['var(--font-montserrat)'],
},
fontWeight: {
thin: 100,
extralight: 200,
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
extrabold: 800,
black: 900,
},
keyframes: {
'accordion-down': {
from: { height: '0' },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0' },
},
bob: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
typography: ({ theme }) => ({
DEFAULT: {
css: {
'--tw-prose-body': 'var(--text)',
'--tw-prose-headings': 'var(--text)',
h1: {
fontSize: '3.5rem',
fontWeight: 'normal',
marginBottom: '0.25em',
},
},
},
}),
},
},
}