-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (33 loc) · 913 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
/** @type {import('tailwindcss').Config} */
export const content = ["./index.html", "./src/**/*.{html,js,ts,jsx,tsx}"];
export const theme = {
extend: {
screens: {
'xs': '425px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'black': '#000000',
'lightgray': '#f3f3f3',
'darkgray': '#292929',
'gray': '#1e1e1e',
'white': '#ffffff',
'lightpurple': '#cfa1ff',
'midpurple': '#764ba2',
'darkpurple': '#6161FF',
'lightblue': '#57eaef',
'midblue': '#0291ff',
'darkblue': '#1a202c',
'yellow': '#f7d070',
},
},
container: {
// center: true,
},
fontFamily: {
'display': [ 'Poppins', 'ui-sans-serif', 'system-ui', 'sans-serif', "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ],
},
};
export const darkMode = 'selector';
export const plugins = [];