Skip to content

Commit f721408

Browse files
yonidavidsonclaude
andcommitted
Unify color palette around Go brand cyan/teal
Replace competing section background colors (peach, yellow, saturated blue) with a cohesive cyan/teal family derived from Go's official palette. Align section headings, borders, links, and focus states to the same color system for consistent appearance across different monitors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4eb3ac7 commit f721408

2 files changed

Lines changed: 34 additions & 34 deletions

File tree

docs/css/main.css

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1554,12 +1554,12 @@ nav {
15541554
CONTENT
15551555
========================================================================== */
15561556
.content a {
1557-
color: #f0a303;
1557+
color: #00758D;
15581558
}
15591559

15601560
.content a:hover,
15611561
.content a:focus {
1562-
color: #fddd52;
1562+
color: #00ADD8;
15631563
text-decoration: underline;
15641564
}
15651565

@@ -1568,7 +1568,7 @@ nav {
15681568
========================================================================== */
15691569
section.about {
15701570
position: relative;
1571-
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
1571+
background: linear-gradient(135deg, #f2fafb 0%, #e6f4f7 100%);
15721572
padding: 60px 20px;
15731573
margin: 0 -20px;
15741574
overflow: hidden;
@@ -1600,7 +1600,7 @@ section.about::before {
16001600
========================================================================== */
16011601
section.location {
16021602
position: relative;
1603-
background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
1603+
background: linear-gradient(135deg, #eef7fa 0%, #dceef5 100%);
16041604
padding: 60px 20px;
16051605
margin: 60px -20px;
16061606
overflow: hidden;
@@ -1620,7 +1620,7 @@ section.location::before {
16201620
}
16211621

16221622
section.location h2 {
1623-
color: #7c2d12 !important;
1623+
color: #00758D !important;
16241624
position: relative;
16251625
z-index: 1;
16261626
}
@@ -1635,11 +1635,11 @@ section.location h2::before {
16351635

16361636
.location-area {
16371637
background: rgba(255, 255, 255, 0.98);
1638-
border: 4px solid #fb923c;
1638+
border: 4px solid #00ADD8;
16391639
border-radius: 16px;
16401640
height: 350px;
16411641
overflow: hidden;
1642-
box-shadow: 0 10px 40px rgba(251, 146, 60, 0.25);
1642+
box-shadow: 0 10px 40px rgba(0, 173, 216, 0.2);
16431643
position: relative;
16441644
z-index: 1;
16451645
}
@@ -1708,14 +1708,14 @@ section.location h2::before {
17081708
}
17091709

17101710
.schedule-tbl tbody tr:hover {
1711-
background: #fffde1;
1711+
background: #edf7fa;
17121712
}
17131713

17141714
.schedule-coffee,
17151715
.schedule-closing,
17161716
.schedule-lunch,
17171717
.schedule-other {
1718-
color: #214f87;
1718+
color: #00758D;
17191719
}
17201720

17211721
/* =============================================================================
@@ -1734,8 +1734,8 @@ section.location h2::before {
17341734
.sponsor--link:focus,
17351735
.partner-link:hover,
17361736
.partner-link:focus {
1737-
border-color: #3b82f6;
1738-
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
1737+
border-color: #00ADD8;
1738+
box-shadow: 0 8px 25px rgba(0, 173, 216, 0.2);
17391739
transform: translateY(-4px);
17401740
}
17411741

@@ -1756,17 +1756,17 @@ section.location h2::before {
17561756
.form input[type=text]:focus,
17571757
.form input[type=email]:focus,
17581758
.form textarea:focus {
1759-
border-color: #3b82f6;
1759+
border-color: #00ADD8;
17601760
outline: 0;
1761-
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
1761+
box-shadow: 0 0 0 3px rgba(0, 173, 216, 0.15);
17621762
}
17631763

17641764
/* =============================================================================
17651765
TWEETS SECTION - GOPHER PARTY
17661766
========================================================================== */
17671767
section.tweets {
17681768
position: relative;
1769-
background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
1769+
background: linear-gradient(135deg, #e8f4f8 0%, #d4ecf2 100%);
17701770
padding: 60px 20px;
17711771
margin: 60px -20px;
17721772
overflow: hidden;
@@ -1787,7 +1787,7 @@ section.tweets::before {
17871787
}
17881788

17891789
section.tweets h2 {
1790-
color: #1e3a8a !important;
1790+
color: #00758D !important;
17911791
position: relative;
17921792
z-index: 1;
17931793
}
@@ -1985,7 +1985,7 @@ section.tweets h2::before {
19851985
========================================================================== */
19861986
section.team {
19871987
position: relative;
1988-
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
1988+
background: linear-gradient(135deg, #f0f6fa 0%, #e0ecf3 100%);
19891989
padding: 60px 20px;
19901990
margin: 60px -20px;
19911991
overflow: hidden;
@@ -2006,7 +2006,7 @@ section.team::before {
20062006
}
20072007

20082008
section.team h2 {
2009-
color: #78350f !important;
2009+
color: #00758D !important;
20102010
position: relative;
20112011
z-index: 1;
20122012
}

static/css/main.css

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1554,12 +1554,12 @@ nav {
15541554
CONTENT
15551555
========================================================================== */
15561556
.content a {
1557-
color: #f0a303;
1557+
color: #00758D;
15581558
}
15591559

15601560
.content a:hover,
15611561
.content a:focus {
1562-
color: #fddd52;
1562+
color: #00ADD8;
15631563
text-decoration: underline;
15641564
}
15651565

@@ -1568,7 +1568,7 @@ nav {
15681568
========================================================================== */
15691569
section.about {
15701570
position: relative;
1571-
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
1571+
background: linear-gradient(135deg, #f2fafb 0%, #e6f4f7 100%);
15721572
padding: 60px 20px;
15731573
margin: 0 -20px;
15741574
overflow: hidden;
@@ -1600,7 +1600,7 @@ section.about::before {
16001600
========================================================================== */
16011601
section.location {
16021602
position: relative;
1603-
background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
1603+
background: linear-gradient(135deg, #eef7fa 0%, #dceef5 100%);
16041604
padding: 60px 20px;
16051605
margin: 60px -20px;
16061606
overflow: hidden;
@@ -1620,7 +1620,7 @@ section.location::before {
16201620
}
16211621

16221622
section.location h2 {
1623-
color: #7c2d12 !important;
1623+
color: #00758D !important;
16241624
position: relative;
16251625
z-index: 1;
16261626
}
@@ -1635,11 +1635,11 @@ section.location h2::before {
16351635

16361636
.location-area {
16371637
background: rgba(255, 255, 255, 0.98);
1638-
border: 4px solid #fb923c;
1638+
border: 4px solid #00ADD8;
16391639
border-radius: 16px;
16401640
height: 350px;
16411641
overflow: hidden;
1642-
box-shadow: 0 10px 40px rgba(251, 146, 60, 0.25);
1642+
box-shadow: 0 10px 40px rgba(0, 173, 216, 0.2);
16431643
position: relative;
16441644
z-index: 1;
16451645
}
@@ -1708,14 +1708,14 @@ section.location h2::before {
17081708
}
17091709

17101710
.schedule-tbl tbody tr:hover {
1711-
background: #fffde1;
1711+
background: #edf7fa;
17121712
}
17131713

17141714
.schedule-coffee,
17151715
.schedule-closing,
17161716
.schedule-lunch,
17171717
.schedule-other {
1718-
color: #214f87;
1718+
color: #00758D;
17191719
}
17201720

17211721
/* =============================================================================
@@ -1734,8 +1734,8 @@ section.location h2::before {
17341734
.sponsor--link:focus,
17351735
.partner-link:hover,
17361736
.partner-link:focus {
1737-
border-color: #3b82f6;
1738-
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
1737+
border-color: #00ADD8;
1738+
box-shadow: 0 8px 25px rgba(0, 173, 216, 0.2);
17391739
transform: translateY(-4px);
17401740
}
17411741

@@ -1756,17 +1756,17 @@ section.location h2::before {
17561756
.form input[type=text]:focus,
17571757
.form input[type=email]:focus,
17581758
.form textarea:focus {
1759-
border-color: #3b82f6;
1759+
border-color: #00ADD8;
17601760
outline: 0;
1761-
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
1761+
box-shadow: 0 0 0 3px rgba(0, 173, 216, 0.15);
17621762
}
17631763

17641764
/* =============================================================================
17651765
TWEETS SECTION - GOPHER PARTY
17661766
========================================================================== */
17671767
section.tweets {
17681768
position: relative;
1769-
background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
1769+
background: linear-gradient(135deg, #e8f4f8 0%, #d4ecf2 100%);
17701770
padding: 60px 20px;
17711771
margin: 60px -20px;
17721772
overflow: hidden;
@@ -1787,7 +1787,7 @@ section.tweets::before {
17871787
}
17881788

17891789
section.tweets h2 {
1790-
color: #1e3a8a !important;
1790+
color: #00758D !important;
17911791
position: relative;
17921792
z-index: 1;
17931793
}
@@ -1985,7 +1985,7 @@ section.tweets h2::before {
19851985
========================================================================== */
19861986
section.team {
19871987
position: relative;
1988-
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
1988+
background: linear-gradient(135deg, #f0f6fa 0%, #e0ecf3 100%);
19891989
padding: 60px 20px;
19901990
margin: 60px -20px;
19911991
overflow: hidden;
@@ -2006,7 +2006,7 @@ section.team::before {
20062006
}
20072007

20082008
section.team h2 {
2009-
color: #78350f !important;
2009+
color: #00758D !important;
20102010
position: relative;
20112011
z-index: 1;
20122012
}

0 commit comments

Comments
 (0)