-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 979 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
42
43
44
45
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}"
],
theme: {
screens: {
'xs': '475px',
'xxs': '300px',
...defaultTheme.screens,
},
extend: {
colors: {
'primaryColor': {
light: "#CE80FF",
DEFAULT: "#9D00FF",
dark: "#5A0092"
},
'secondaryColor': {
light: "#263C7F",
DEFAULT: "#101935",
dark: "#080D1B"
},
'tertiaryColor': {
light: "#B38CFF",
DEFAULT: "#8A4FFF",
dark: "#681DFF"
},
'accentColor': {
light: "#FFF199",
DEFAULT: "#FFE74C",
dark: "#EDCD00"
},
'whiteColor': "#F2FDFF"
}
},
fontFamily: {
sans: ['Lato', 'Poppins', 'sans-serif'],
serif: ['Playfair Display', 'serif']
}
},
plugins: [],
}