-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (49 loc) · 1.28 KB
/
tailwind.config.ts
File metadata and controls
49 lines (49 loc) · 1.28 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
custom: ['Oswald', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
oswald: ['oswald', 'sans-serif']
},
screens: {
'xs': '320px',
'm': '375px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
colors: {
'aquamarine': '#7fffd4',
'green-ws': '#00bb2d',
'blue-fb': '#3b5998',
'blue-ig': '#5F4BC6',
'purple-ig': '#9E37B8',
'pink-ig': '#D43089',
'orange-ig': '#F86F2F',
'yellow-ig': '#FED372',
'blue-tw': '#1DA1F2',
'gray-gm': '#4B4B4B',
'gray-hvr': '#a6a2a2',
'light-blue': "#0ef",
'dark-blue': "#38046c",
'blue-bg': "#110652",
'pink-letters':'#cb1b58',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}