From 77109f0019a79da4195de8f663a3e5ef462df5c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:42:18 +0000 Subject: [PATCH 1/3] Initial plan From 155d49285fb7952066cd126ebef14f57274dc1c0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:47:28 +0000 Subject: [PATCH 2/3] Apply red color to cronograma texts as intended Co-authored-by: ROMA0589 <140223107+ROMA0589@users.noreply.github.com> --- Premocidade/src/styles/globals.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Premocidade/src/styles/globals.css b/Premocidade/src/styles/globals.css index 876cb91..c313e4c 100644 --- a/Premocidade/src/styles/globals.css +++ b/Premocidade/src/styles/globals.css @@ -1168,7 +1168,7 @@ h1 { } .aula-numero { - background: var(--primary-color); + background: #dc3545; color: white; padding: 5px 10px; border-radius: 50%; @@ -1181,6 +1181,11 @@ h1 { font-weight: bold; } +.aula-card h3 { + color: #dc3545; + font-weight: bold; +} + .aula-card ul { list-style: none; padding: 0; @@ -1190,7 +1195,7 @@ h1 { .aula-card li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); - color: #f0f0f0; + color: #dc3545; } .aula-card li:last-child { From 804143a5ed53dc4844ce62ac572093373f861a1e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:48:55 +0000 Subject: [PATCH 3/3] Use CSS variable for red color to improve maintainability Co-authored-by: ROMA0589 <140223107+ROMA0589@users.noreply.github.com> --- Premocidade/src/styles/globals.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Premocidade/src/styles/globals.css b/Premocidade/src/styles/globals.css index c313e4c..dc85732 100644 --- a/Premocidade/src/styles/globals.css +++ b/Premocidade/src/styles/globals.css @@ -1,6 +1,7 @@ :root { --primary-color: #4a90e2; --secondary-color: #f5a623; + --red-color: #dc3545; --background-color: #ffffff; --text-color: #333333; --gradient-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); @@ -1168,7 +1169,7 @@ h1 { } .aula-numero { - background: #dc3545; + background: var(--red-color); color: white; padding: 5px 10px; border-radius: 50%; @@ -1182,7 +1183,7 @@ h1 { } .aula-card h3 { - color: #dc3545; + color: var(--red-color); font-weight: bold; } @@ -1195,7 +1196,7 @@ h1 { .aula-card li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); - color: #dc3545; + color: var(--red-color); } .aula-card li:last-child {