forked from friendsofagape/autographa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
// const colors = require('tailwindcss/colors');
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./renderer/src/components/**/*.{js,ts,jsx,tsx}',
'./renderer/src/layouts/**/*.{js,ts,jsx,tsx}',
'./renderer/src/core/**/*.{js,ts,jsx,tsx}',
'./renderer/src/modules/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#0073E5',
'primary-50': '#E4F2FF',
secondary: '#151515',
success: '#40C000',
error: '#FF4D4D',
validation: '#FFE5E5',
// white: colors.white,
light: '#E4F1FF',
// gray: colors.slate,
dark: '#333333',
// black: colors.black,
// green: colors.emerald,
// yellow: colors.amber,
// red: colors.red,
},
fontSize: {
xxs: '.65rem',
},
height: {
editor: 'calc(-9rem + 100vh)',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};