Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
7735bc6
1
Parent(s):
0008e1a
Updated font colors in style.css
Browse files
style.css
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
:root {
|
2 |
--title-font-size: clamp(1.5rem, 6vw, 3rem);
|
3 |
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
|
|
|
4 |
--primary-color: #8B4049; /* Soft burgundy */
|
5 |
--secondary-color: #A67F8E; /* Muted mauve */
|
6 |
--accent-color: #D4A5A5; /* Soft rose */
|
@@ -60,15 +61,16 @@ p {
|
|
60 |
|
61 |
#title {
|
62 |
font-size: var(--title-font-size);
|
63 |
-
color: var(--
|
64 |
font-family: 'Helvetica Neue', sans-serif;
|
65 |
text-transform: uppercase;
|
66 |
background: transparent;
|
67 |
}
|
68 |
|
69 |
#title span {
|
70 |
-
background: linear-gradient(45deg,
|
71 |
background-clip: text;
|
|
|
72 |
color: transparent;
|
73 |
}
|
74 |
|
|
|
1 |
:root {
|
2 |
--title-font-size: clamp(1.5rem, 6vw, 3rem);
|
3 |
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
|
4 |
+
--title-color: #FF0000; /* Bright red for title */
|
5 |
--primary-color: #8B4049; /* Soft burgundy */
|
6 |
--secondary-color: #A67F8E; /* Muted mauve */
|
7 |
--accent-color: #D4A5A5; /* Soft rose */
|
|
|
61 |
|
62 |
#title {
|
63 |
font-size: var(--title-font-size);
|
64 |
+
color: var(--title-color); /* Bright red title */
|
65 |
font-family: 'Helvetica Neue', sans-serif;
|
66 |
text-transform: uppercase;
|
67 |
background: transparent;
|
68 |
}
|
69 |
|
70 |
#title span {
|
71 |
+
background: linear-gradient(45deg, #EF4E4E, #b42828); /* Keeping bright red gradient */
|
72 |
background-clip: text;
|
73 |
+
-webkit-background-clip: text;
|
74 |
color: transparent;
|
75 |
}
|
76 |
|