-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
41 lines (41 loc) · 936 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
screens: {
xsm: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
extend: {
fontFamily: {
latoRegular: ['Lato-Regular', 'sans-serif'],
latoBold: ['Lato-Bold', 'sans-serif'],
},
colors: {
bg_primary: '#FFFFFF',
bg_secondary: '#F5F5F5',
bg_tertiary: '#E5E5E5',
dark_yellow: '#F2C94C',
very_dark_yellow: '#FD8F0C',
light_limerick: '#DCEAAA',
dark_limerick: '#A4D301',
very_dark_limerick: '#97BF0F',
},
},
},
variants: {
extend: {
translate: ['responsive', 'group-hover', 'hover', 'focus'],
},
},
/* eslint-disable global-require */
plugins: [
require('@tailwindcss/forms'),
],
/* eslint-enable global-require */
};