-
Notifications
You must be signed in to change notification settings - Fork 71
/
tailwind.config.js
46 lines (46 loc) · 1.37 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
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false, // disable Tailwind's reset
},
content: ['./src/**/*.{js,jsx,ts,tsx}', './docs/**/*.mdx'],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
fontFamily: {
montserrat: ['Montserrat'],
nunito: 'Nunito Sans',
lora: 'Lora, serif',
},
colors: {
brand: {
500: '#BD83FD',
800: '#5a007e',
},
background: {
100: '#F2F2F3',
300: '#D6D8DC',
700: '#444950',
800: '#242526',
900: '#090909',
},
'light-background': 'white',
'dark-background': '#1b1b1d',
transparent: 'rgba(0,0,0,0)',
},
maxWidth: {
biggest: '1440px',
},
backgroundImage: {
waves: "url('/img/Waves.svg')",
'waves-light': "url('/img/Waves-light.svg')",
'brand-gradient': 'linear-gradient(244.1deg, #9C45FC 12.55%, #A95DFC 32.31%, #BD83FD 86.37%)',
'inkubator-banner-light': "url('/img/inkubator-tile-banner-light.svg')",
'inkubator-banner-dark': "url('/img/inkubator-tile-banner-dark.svg')",
'gradient-1': 'linear-gradient(180deg, #FFFFFF 0%, #EFEFEF 100%);',
'gradient-1-dark': 'linear-gradient(180deg, #1B1B1D 0%, #242526 100%);',
},
},
},
plugins: [],
}