-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
49 lines (46 loc) · 965 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
46
47
48
49
const colors = require('tailwindcss/colors');
// default Morpheme Color
const primary = {
DEFAULT: '#28A0F6',
50: '#D8EEFD',
100: '#C5E5FD',
200: '#9DD4FB',
300: '#76C3F9',
400: '#4FB1F8',
500: '#28A0F6',
600: '#0984DD',
700: '#0764A7',
800: '#054471',
900: '#02233B',
};
// default Morpheme Color
const secondary = {
DEFAULT: '#FF8B49',
50: '#FFFFFF',
100: '#FFF3EC',
200: '#FFD9C3',
300: '#FFBF9B',
400: '#FFA572',
500: '#FF8B49',
600: '#FF6711',
700: '#D84E00',
800: '#A03A00',
900: '#682600',
};
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./node_modules/@morpheme/**/src/**/*.{vue,js,ts,jsx,tsx,css}'],
theme: {
extend: {
colors: {
primary,
secondary,
info: colors.sky,
success: colors.emerald,
warning: colors.yellow,
error: colors.rose,
},
},
},
presets: [require('@morpheme/tailwind-config/preset')],
};