-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (52 loc) · 1.44 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode : 'class',
theme: {
extend: {
colors: {
'primary' : '#6b21a8', //purple-800
'primary-light' : '#f1f5f9', //purple-100
'secondary' : '#c084fc', //purple-400
'primary-dark' : '#020617', // slate-900
'light-gray': '#14b8a6', //teal-500
'light-background' :'#f8fafc', // slate-50
'dark-background' :'#020617' , //slate-950
'darker' :'#020617' , //slate-950
'footer': '#3b0764', //purple-950
'footer-dark': '#4a044e', //dark purple
'shadow-dark': '#475569',
'light-dark-background' : '#0f172a' ,//slate-900
'p-text' : '#374151', //gray-500
'p-text-dark' : '#cbd5e1' //slate-300
},
fontFamily: {
'poppins': ['Poppins', 'sans-serif'],
},
fontSize: {
'biggest': '2.25rem',
'bigger': '1.875rem',
'h1': '1.5rem',
'h2': '1.25rem',
'h3': '1rem',
'normal': '.938rem',
'small': '.813rem',
'smaller': '.75rem',
'tiny': '.625rem',
},
fontWeight: {
'medium': '500',
'semibold': '600',
},
height : {
'header' : '4rem'
}
},
},
plugins: [],
}
export default config