-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 837 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 837 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
main: 'rgba(34, 34, 67, 1)',
primary: 'rgba(255, 255, 255, 0.7)',
accent: 'rgba(130, 255, 190, 0.9)',
'primary-1': 'rgba(255, 255, 255)',
green: '#13ce66',
selection: 'rgba(254, 95, 87, 0.6)',
'round-span-text': 'rgba(45, 43, 83)',
'gray-dark': '#273444',
gray: '#8492a6',
'gray-light': '#d3dce6',
'german-flag':
'linear-gradient(rgb(0, 0, 0) 33.333%, rgb(255, 0, 0) 33.333%, rgb(255, 0, 0) 66.666%, rgb(255, 204, 0) 66.666%)',
},
fontFamily: {
sans: ['Lato', 'sans-serif'],
},
},
plugins: [],
};