-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
76 lines (74 loc) · 2.17 KB
/
tailwind.config.ts
File metadata and controls
76 lines (74 loc) · 2.17 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
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
import { Dancing_Script } from "next/font/google";
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
boxShadow: {
'white-xl': '0 10px 15px -3px rgba(255, 255, 255, 0.1), 0 4px 6px -2px rgba(255, 255, 255, 0.05)',
},
fontFamily: {
palanquin: ['Palanquin', 'sans-serif'],
montserrat: ['Montserrat', 'sans-serif'],
corinthia: ['Corinthia', 'serif'],
cookie: ['cookie', 'serif'],
satisfy: ['Satisfy', 'cursive'],
Dancing_Script: ["Dancing Script", "cursive"],
Courgette: ["Courgette", "cursive"],
Great_Vibes: ["Great Vibes", "cursive"],
Merienda: ["Merienda", "cursive"],
Pacifico: ["Pacifico", "cursive"],
Shadows_Into_Light: ["Shadows Into Light", "cursive"],
Tangerine: ["Tangerine", "cursive"],
Yellowtail: ["Yellowtail", "cursive"],
custom: ["Signika Negative", "sans-serif"],
},
colors: {
'paradiso': {
'50': '#f4f9f9',
'100': '#daedeb',
'200': '#b4dbd7',
'300': '#87c1be',
'400': '#5ea3a2',
'500': '#408080',
'600': '#356a6c',
'700': '#2d5658',
'800': '#284647',
'900': '#243c3d',
'950': '#112022',
},
'minti': {
'50': '#ecfdf6',
'100': '#d2f9e6',
'200': '#a9f1d3',
'300': '#71e4ba',
'400': '#2dbc8d',
'500': '#14b586',
'600': '#08936d',
'700': '#07755a',
'800': '#085d48',
'900': '#084c3c',
'950': '#032b22',
},
"blue-15": "#1A2130",
"blue-20": "#5A72A0",
"blue-30": "#83B4FF",
"blue-40": "#FDFFE2",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
animation: {
"bounce-slow": "bounceslow 5s ease infinite",
},
},
},
plugins: [],
};
export default config;