Browse Source

Merge pull request 'Changed website to use creamy white background colors and fixed text visibility issue by removing the gradient background from hero section and making the description text use the same color as the tagline (secondary-dark) for consistent visibility' (#4) from ai/1769325777959 into main

Reviewed-on: #4
main
Diego Vester 2 months ago
parent
commit
77253bef9c
  1. 9
      src/components/sections/HeroSection.vue
  2. 12
      src/styles/variables.css

9
src/components/sections/HeroSection.vue

@ -30,12 +30,7 @@ import logo from "@/assets/logo.jpg";
.hero-section { .hero-section {
padding: var(--space-2xl) var(--space-lg); padding: var(--space-2xl) var(--space-lg);
text-align: center; text-align: center;
background: linear-gradient( background-color: var(--color-background);
135deg,
var(--color-background-soft) 0%,
var(--color-primary-light) 50%,
var(--color-secondary-light) 100%
);
} }
.hero-container { .hero-container {
@ -66,7 +61,7 @@ import logo from "@/assets/logo.jpg";
.hero-description { .hero-description {
font-size: var(--font-size-lg); font-size: var(--font-size-lg);
color: var(--color-text); color: var(--color-secondary-dark);
max-width: 600px; max-width: 600px;
margin: 0 auto; margin: 0 auto;
} }

12
src/styles/variables.css

@ -1,7 +1,7 @@
/** /**
* Design System Variables - lukastitch.corneruniverse.com * Design System Variables - lukastitch.corneruniverse.com
* *
* Color Palette: Pastel pink, purple, and grey * Color Palette: Pastel pink, purple, and grey with creamy white background
* Mood: Warm, cozy, handcrafted feel * Mood: Warm, cozy, handcrafted feel
* *
* AI CODING TOOL INSTRUCTIONS: * AI CODING TOOL INSTRUCTIONS:
@ -15,7 +15,7 @@
:root { :root {
/* ============================================ /* ============================================
PASTEL COLOR PALETTE PASTEL COLOR PALETTE
Pink, Purple, and Grey as requested Pink, Purple, and Grey with Creamy White Background
============================================ */ ============================================ */
/* Primary: Soft Pastel Pink */ /* Primary: Soft Pastel Pink */
@ -33,10 +33,10 @@
--color-grey-light: #e0e0e0; --color-grey-light: #e0e0e0;
--color-grey-dark: #6e6e6e; --color-grey-dark: #6e6e6e;
/* Background Colors */ /* Background Colors - Creamy White Theme */
--color-background: #fefcfd; --color-background: #fefbf7;
--color-background-soft: #fdf5f8; --color-background-soft: #fdf9f5;
--color-background-mute: #f8eef2; --color-background-mute: #faf6f2;
/* Text Colors */ /* Text Colors */
--color-text: #4a4a4a; --color-text: #4a4a4a;

Loading…
Cancel
Save