-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
65 lines (63 loc) · 1.89 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
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: {
keyframes: {
wave: {
'0%': { transform: 'rotate(0.0deg)' },
'10%': { transform: 'rotate(14deg)' },
'20%': { transform: 'rotate(-8deg)' },
'30%': { transform: 'rotate(14deg)' },
'40%': { transform: 'rotate(-4deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(0.0deg)' },
},
x: {
'0%': {
transform: 'translateX(0)',
animationTimingFunction: 'cubic-bezier(0.8, 0, 1, 1)',
},
'50%': {
transform: 'translateX(-25%)',
animationTimingFunction: 'cubic-bezier(0, 0, 0.2, 1)',
},
},
},
animation: {
'waving-hand': 'wave 2s linear infinite',
'bounce-x': 'x 1s infinite',
},
fontFamily: {
sans: ['var(--font-roboto)', ...defaultTheme.fontFamily.sans],
cedarville: [
'var(--font-cedarville)',
...defaultTheme.fontFamily.serif,
],
},
spacing: {
minimalScreen: '100svh',
dynamicScreen: '100dvh',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
'ramiro-background': '#292929',
'ramiro-font': '#D8D8D8',
'ramiro-light-orange': '#fed7aa',
'ramiro-light-grey': '#D8D8D8',
'ramiro-coral': '#ec8a5f',
},
},
},
plugins: [],
};