forked from llamaxyz/pronouns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (59 loc) · 1.77 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx,mx,mdx}', './components/**/*.{js,ts,jsx,tsx}', './utils/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
// Using https://color-name.com to generate color names
neutral: colors.neutral,
ui: {
black: '#111813',
blue: '#4BB1FB',
charleston: '#282D2A',
darkerGreen: '#35B06D',
darkGreen: '#3CC97D',
green: '#4BFB9C',
lightGreen: '#6FFCB0',
lighterGreen: '#81FCBA',
purple: '#A637FD',
silver: '#AFAFAF',
space: '#414642',
sulphur: '#FBDF4B',
},
warm: '#e1d7d5',
cool: '#d5d7e1',
},
screens: {
xxxs: '425px',
xxs: '475px',
xs: '520px',
},
fontFamily: {
sans: ['Aeonik', ...defaultTheme.fontFamily.sans],
},
animation: {
progress: '1s linear 0.05s',
tooltip: '0.3s ease 0.05s 1 normal forwards running tooltip',
'fade-in-1': '0.5s ease-in-out 0.05s 1 normal forwards running fadeIn',
'fade-in-2': '0.5s ease 0.15s 1 normal forwards running fadeIn',
},
keyframes: {
progress: {
'0%': { width: '0%' },
'100%': { width: '100%' },
},
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(8px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
tooltip: {
'0%': { opacity: '0', transform: 'translateY(2px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}