-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
73 lines (72 loc) · 1.95 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-footer':
'linear-gradient(90deg, #E9A49B -3.82%, #FFFFFF 52.04%, #FFBBD2 85.55%, #F1DFC1 107.89%)',
},
fontSize: {
xss: ['0.625rem', '0.875rem'], //size: 10px, line-height: 14px
},
colors: {
project: {
fuchsia: '#F75471',
pink: '#FFBBD2',
'pastel-pink': '#EB9096',
apricot: '#E9A49B',
cream: '#F1DFC1',
blue: '#678CEC',
'dark-blue': '#183F86',
'dark-gray': '#979797',
'light-gray': '#313131',
'light-blue': '#D8E3FE',
gray: '#DDDDDD',
brown: '#AA8B84',
yellow: '#EFD08B',
red: '#C94B4B',
},
rpkm: {
red: '#C94B4B',
cream: '#EAE3C3',
green: '#67AB88',
blue: '#183F86',
gray: '#313131',
yellow: '#EFD08B',
pink: '#EB9096',
silver: '#D9D9D9',
},
},
fontFamily: {
season: ['var(--season)', 'system-ui'],
athiti: ['var(--athiti)', 'system-ui'],
sarun: ['var(--sarun)', 'system-ui'],
sopha: ['var(--sopha)', 'system-ui'],
},
dropShadow: {
font: '0 1.2px 1.2px rgba(0,0,0,0.8)',
box: '0px 0px 15px 0px rgba(0, 0, 0, 0.50)',
},
animation: {
shake: 'shaking 60ms infinite',
},
keyframes: {
shaking: {
'0%': { top: '0px' },
'50%': { transform: 'rotate(1deg)' },
'80%': { transform: 'rotate(-1deg)' },
'100%': { top: '10px' },
},
},
},
},
plugins: [
require('@butterfail/tailwindcss-inverted-radius'),
require('@designbycode/tailwindcss-text-stroke'),
],
};
export default config;