-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
80 lines (79 loc) · 2.04 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
/** @type {import('tailwindcss').Config} */
const { spacing, fontFamily } = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
'flat-yellow': '#fcba28',
'flat-pink': '#f38ba3',
'flat-green': '#0ba95b',
beige: '#f9f4da',
'beige.200': 'rgba(249,244,218,0.95)',
'beige.500': 'rgba(249,244,218,0.9)',
'flat-blue': '#12b5e5',
'flat-orange': '#fc7428',
'flat-red': '#ed203d',
'flat-purple': '#7b5ea7',
'dark-black': '#0F0D0E',
'dark-grey': '#1D1A1B',
gray: {
0: '#fff',
100: '#fafafa',
200: '#eaeaea',
300: '#999999',
400: '#888888',
500: '#666666',
600: '#444444',
700: '#333333',
800: '#222222',
900: '#111111',
},
},
screens: {
'showSocial': '1120px',
},
fontSize: {
'6xl': ['3.5rem'],
},
dropShadow: {
'card': '8px 8px rgba(255,255,255,1)',
'card-dark':'8px 8px rgba(0, 0, 0,1)'
},
keyframes: {
horizontalBounce: {
'0%, 100%': {
transform: 'translateX(0%)',
transitionTimingFunction: 'cubic-bezier(0.8, 0, 1, 1)',
},
'50%': {
transform: 'translateX(-25%)',
transitionTimingFunction: 'cubic-bezier(0, 0, 0.2, 1)',
},
},
wave: {
to: {
'margin-left': '-51%',
},
},
},
animation: {
rectilinear: 'horizontalBounce 1s infinite',
wave: 'wave 1.5s ease-in-out infinite',
},
fontFamily: {
paytone: ['var(--font-paytone)', 'sans-serif'],
sans: ['var(--font-outfit)', 'sans-serif'],
},
},
},
variants: {
typography: ['dark'],
},
plugins: [require('@tailwindcss/typography')],
};