Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 232ca72

Browse files
author
Manuel Proß
committed
feat(FE): add custom gray color
1 parent ce07c03 commit 232ca72

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

web/tailwind.config.ts

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
import type { Config } from 'tailwindcss'
1+
import type { Config } from 'tailwindcss';
22

33
const config: Config = {
4-
content: [
5-
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6-
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
7-
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
8-
],
9-
theme: {
10-
extend: {
11-
backgroundImage: {
12-
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
13-
'gradient-conic':
14-
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
15-
},
16-
colors: {
17-
primary: 'var(--color-primary)',
18-
secondary: 'var(--color-secondary)',
19-
tertiary: 'var(--color-tertiary)',
20-
'primary-text': 'var(--color-primary-text)',
21-
'secondary-text': 'var(--color-secondary-text)',
22-
'accent-text': 'var(--color-primary)',
23-
},
4+
content: [
5+
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
7+
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
8+
],
9+
theme: {
10+
extend: {
11+
backgroundImage: {
12+
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
13+
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
14+
},
15+
colors: {
16+
primary: 'var(--color-primary)',
17+
secondary: 'var(--color-secondary)',
18+
tertiary: 'var(--color-tertiary)',
19+
'primary-text': 'var(--color-primary-text)',
20+
'secondary-text': 'var(--color-secondary-text)',
21+
'accent-text': 'var(--color-primary)',
22+
'gray-1': 'var(--gray-1)',
23+
},
24+
},
2425
},
25-
},
26-
plugins: [],
27-
}
28-
export default config
26+
plugins: [],
27+
};
28+
export default config;

0 commit comments

Comments
 (0)