-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
tailwind.config.js
35 lines (35 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
canada: ['Radio Canada', 'sans-serif'],
},
extend: {
colors: {
blue: {
lighter: '#ECF5FF',
light: '#086BCF',
DEFAULT: '#1165BA',
dark: '#014C97',
},
gray: {
light: '#FCFCFC',
DEFAULT: '#F3F3F3',
dark: '#C1C1C1',
darker: '#515050',
},
},
backgroundImage: {
'hero-pattern':
"url('https://cdn.discordapp.com/attachments/1053386017589178470/1069996612799189064/Circles-details.png'), linear-gradient(294.77deg, rgba(10, 103, 199, 1) 50.32%, rgba(0, 114, 231, 0.67) 100%)",
},
screens: {
sm: '640px',
hd: '1456px',
},
},
},
plugins: [],
};