-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (39 loc) · 1.18 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
/**
* Tailwind configuration.
*/
const defaultTheme = require( 'tailwindcss/defaultTheme' );
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}", "./public/index.html",
],
darkMode: 'class',
theme: {
screens: {
'xs': '400px',
...defaultTheme.screens,
},
extend: {
colors: {
retropurple: {
40: "#d9abf3",
50: "#E0A6DB",
100: "#E6C1E3",
200: "#B362AC",
500: "#591c89",
600: "#341C47",
},
}
},
fontFamily: {
sans: [ "Open Sans", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ],
serif: [ "ui-serif", "Georgia", "Cambria", "Times New Roman", "Times", "serif" ],
mono: [ "Consolas", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Liberation Mono", "Courier New", "monospace" ],
brand: [ "Paytone One", "sans-serif"],
digital: [ "Digital-7", "monospace"],
'digital-italic': [ "Digital-7-Italic", "monospace"],
},
},
plugins: [
//require('@tailwindcss/typography'),
],
}