Skip to content

Commit dca0e23

Browse files
committed
Add custom colors back
1 parent 1d8217a commit dca0e23

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

tests/dummy/config/tailwind.config.js

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,23 @@
33
// const defaultTheme = require('tailwindcss/defaultTheme');
44

55
let extensions = 'html,hbs,js,ts,gjs,gts';
6-
let paths = ['./tests/dummy/**/*', './addon/**/*']
6+
let paths = ['./tests/dummy/**/*', './addon/**/*'];
77

88
module.exports = {
9-
content: paths.map(glob => `${glob}.{${extensions}}`),
9+
content: paths.map((glob) => `${glob}.{${extensions}}`),
10+
theme: {
11+
extend: {
12+
colors: {
13+
code: {
14+
green: '#b5f4a5',
15+
yellow: '#ffe484',
16+
purple: '#d9a9ff',
17+
red: '#ff8383',
18+
blue: '#93ddfd',
19+
white: '#fff',
20+
},
21+
},
22+
},
23+
},
1024
plugins: [require('@tailwindcss/typography')],
1125
};

0 commit comments

Comments
 (0)