generated from theodorusclarence/ts-nextjs-tailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
106 lines (105 loc) · 3.67 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* eslint-disable @typescript-eslint/no-var-requires */
const { fontFamily } = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
backgroundImage: {
'ex4-bgMainMobile': "url('/images/projects/ex4/bg-main-desktop.png')",
'ex4-bgMainDesktop': "url('/images/projects/ex4/bg-main-mobile.png')",
'ex4-bgCardFront': "url('/images/projects/ex4/bg-card-front.png')",
'ex4-bgCardBack': "url('/images/projects/ex4/bg-card-back.png')",
'ex1-cartIcon': "url('/images/projects/ex1/image-product-desktop.jpg')",
'ex1-product-desktop':
"url('/images/projects/ex1/image-product-desktop.jpg')",
'ex1-product-mobile':
"url('/images/projects/ex1/image-product-mobile.jpg')",
},
fontFamily: {
SpaceGrotesk: ['Space Grotesk', ...fontFamily.sans],
Fraunces: ['Fraunces', ...fontFamily.sans],
Montserrat: ['Montserrat', ...fontFamily.sans],
primary: ['Inter', ...fontFamily.sans],
Outfit: ['Outfit', ...fontFamily.sans],
PlusJakartaSans: ['Plus Jakarta Sans', ...fontFamily.sans],
},
colors: {
ex4: {
DeepViolet: '#21092F',
PurplishGrey: '#8F8694',
LightGrey: '#DFDEE0',
White: '#FFFFFF',
Red: '#FF5050',
},
ex3: {
Blue: '#0A327B',
Red: '#F65552',
VeryDarkGreyBlue: '#1C202B',
DarkGreyBlue: '#5E6778',
GreyBlue: '#939CAD',
LightGreyBlue: '#E5EFFA',
VeryLightGreyBlue: '#DDE7EE',
Snow: '#F7FAFD',
White: '#FFFFFF',
},
ex2: {
blue: '#2C7DFA',
blueShaded: '#3685FF',
darkNavy: '#1F314F',
grey: '#7D889E',
lightGrey: '#D5E1EF',
white: '#FFFFFF',
},
ex1: {
white: '#FFFFFF',
cream: '#F2EAE2',
aurometalSaurus: '#6C7289',
deepAquamarine: '#3D8168',
hoveredDeepAquamarine: '#1A4032',
gunmetal: '#1C232B',
},
primary: {
// Customize it on globals.css :root
50: 'rgb(var(--tw-color-primary-50) / <alpha-value>)',
100: 'rgb(var(--tw-color-primary-100) / <alpha-value>)',
200: 'rgb(var(--tw-color-primary-200) / <alpha-value>)',
300: 'rgb(var(--tw-color-primary-300) / <alpha-value>)',
400: 'rgb(var(--tw-color-primary-400) / <alpha-value>)',
500: 'rgb(var(--tw-color-primary-500) / <alpha-value>)',
600: 'rgb(var(--tw-color-primary-600) / <alpha-value>)',
700: 'rgb(var(--tw-color-primary-700) / <alpha-value>)',
800: 'rgb(var(--tw-color-primary-800) / <alpha-value>)',
900: 'rgb(var(--tw-color-primary-900) / <alpha-value>)',
},
dark: '#222222',
},
keyframes: {
flicker: {
'0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': {
opacity: 0.99,
filter:
'drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))',
},
'20%, 21.999%, 63%, 63.999%, 65%, 69.999%': {
opacity: 0.4,
filter: 'none',
},
},
shimmer: {
'0%': {
backgroundPosition: '-700px 0',
},
'100%': {
backgroundPosition: '700px 0',
},
},
},
animation: {
flicker: 'flicker 3s linear infinite',
shimmer: 'shimmer 1.3s linear infinite',
},
},
},
plugins: [require('@tailwindcss/forms')],
};