github
86 of 113 branches covered (76.11%)
Branch coverage included in aggregate %.
2 of 2 new or added lines in 1 file covered. (100.0%)
759 of 1030 relevant lines covered (73.69%)
21.53 hits per line
1 |
import { type Config } from "npm:tailwindcss@3.3.5";
|
|
2 |
|
|
3 |
/**
|
1✔ |
4 |
* see: https://tailwindcss.com/docs/content-configuration |
|
5 |
*/ |
2✔ |
6 |
export default { |
2✔ |
7 |
content: [
|
2✔ |
8 |
"./components/**/*.tsx",
|
2✔ |
9 |
"./modules/**/**/*.tsx",
|
2✔ |
10 |
"./middleware/**/**/*.tsx",
|
2✔ |
11 |
], |
2✔ |
12 |
theme: { |
2✔ |
13 |
extend: {
|
2✔ |
14 |
colors: {
|
2✔ |
15 |
primary: {
|
2✔ |
16 |
"50": "#eff6ff", |
2✔ |
17 |
"100": "#dbeafe", |
2✔ |
18 |
"200": "#bfdbfe", |
2✔ |
19 |
"300": "#93c5fd", |
2✔ |
20 |
"400": "#60a5fa", |
2✔ |
21 |
"500": "#3b82f6", |
2✔ |
22 |
"600": "#2563eb", |
2✔ |
23 |
"700": "#1d4ed8", |
2✔ |
24 |
"800": "#1e40af", |
2✔ |
25 |
"900": "#1e3a8a", |
2✔ |
26 |
"950": "#172554", |
2✔ |
27 |
}, |
2✔ |
28 |
}, |
2✔ |
29 |
}, |
2✔ |
30 |
}, |
2✔ |
31 |
} satisfies Config; |
2✔ |