-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1.08 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} */
const withMT = require('@material-tailwind/react/utils/withMT');
const colors = require('tailwindcss/colors');
module.exports = withMT({
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
jakarta: ['Plus Jakarta Sans', 'sans-serif'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: {
light: '#94DBFB',
DEFAULT: '#29B6F6',
dark: '#199EF2',
},
secondary: {
light: '#C7E9EE',
DEFAULT: '#AFDFE7',
dark: '#96D2DD',
},
tertiary: {
light: '#C8DDFF',
DEFAULT: '#B0CEFF',
dark: '#97BCFF',
},
quaternary: {
light: '#8292E5',
DEFAULT: '#4C63DA',
dark: '#3347CB',
},
white: {
light: '#FDFDFC',
DEFAULT: '#FAFAF9',
dark: '#F8F8F6',
},
black: colors.black,
gray: colors.gray,
},
},
},
plugins: [],
});