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

Commit 48ad0b9

Browse files
author
Manuel Proß
committed
fix(FE): rename gray var for gray color, add two more gray colors
1 parent ce76539 commit 48ad0b9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

web/src/styles/globals.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
--color-primary: #3498db;
1212
--color-secondary: #2ecc71;
1313
--color-tertiary: #e74c3c;
14-
--gray-1: #313131;
14+
--c-gray-1: #313131;
15+
--c-gray-2: #222222;
16+
--c-gray-3: #1b1b1b;
1517
--primary-text: #333;
1618
--secondary-text: #555;
1719
}

web/tailwind.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ const config: Config = {
1919
'primary-text': 'var(--color-primary-text)',
2020
'secondary-text': 'var(--color-secondary-text)',
2121
'accent-text': 'var(--color-primary)',
22-
'gray-1': 'var(--gray-1)',
22+
'gray-1': 'var(--c-gray-1)',
23+
'gray-2': 'var(--c-gray-2)',
24+
'gray-3': 'var(--c-gray-3)',
2325
},
2426
},
2527
},

0 commit comments

Comments
 (0)