-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export const content = [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
];
export const theme = {
extend: {
colors: {
google: {
blue: '#174EA6',
mediumBlue: '#4285F4',
lightBlue: '#D2E3FC',
red: '#A50E0E',
mediumRed: '#EA4335',
lightRed: '#FAD2CF',
orange: '#E37400',
yellow: '#FBBC04',
lightYellow: '#FEFEC3',
green: '#0D652D',
mediumGreen: '#34A853',
lightGreen: '#CEEAD6',
grey: '#9AA0A6',
lightGrey: '#F1F3F4',
black: '#141414',
},
},
animation: {
'gradient-wave': 'wave 3s infinite ease-in-out',
'bounce-slow': 'bounce 3s infinite',
},
keyframes: {
wave: {
'0%, 100%': { transform: 'translateX(0)', opacity: '0.6' },
'50%': { transform: 'translateX(20px)', opacity: '0.8' },
},
},
fontFamily: {
sora: ['var(--font-sora)'],
'noto-sans': ['var(--font-noto-sans)'],
},
},
};
export const plugins = [];