Skip to content

Commit e95a111

Browse files
committed
Standardize primary brand color
1 parent ef8fc54 commit e95a111

18 files changed

Lines changed: 40 additions & 40 deletions

File tree

app/globals.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,18 @@
142142

143143
/* Text selection */
144144
::selection {
145-
background: #892be280;
145+
background: #8a2ae380;
146146
color: white;
147147
}
148148

149149
::-moz-selection {
150-
background: #8a2be280;
150+
background: #8a2ae380;
151151
color: white;
152152
}
153153

154154
* {
155155
scrollbar-width: 4px;
156-
scrollbar-color: #8a2be2 #121212;
156+
scrollbar-color: #8a2ae3 #121212;
157157
}
158158

159159
/* WebKit Scrollbar Support (Chrome, Safari, iOS, Edge) */
@@ -166,7 +166,7 @@
166166
}
167167

168168
::-webkit-scrollbar-thumb {
169-
background-color: #8a2be2;
169+
background-color: #8a2ae3;
170170
border-radius: 20px;
171171
}
172172

@@ -350,7 +350,7 @@
350350
}
351351

352352
.markdown-body a:hover {
353-
color: #8a2be2;
353+
color: #8a2ae3;
354354
text-decoration: none;
355355
}
356356

@@ -396,7 +396,7 @@
396396

397397
/* Highlight */
398398
.markdown-body mark {
399-
background-color: #892be280;
399+
background-color: #8a2ae380;
400400
color: #fff;
401401
padding: 0.2em;
402402
}

app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function NotFound() {
2626
</PageTitle>
2727
<h2 className="text-center">
2828
The page you&apos;re looking for does not exist. Click{" "}
29-
<Link className="font-semibold text-[#8a2be2]" href="/">
29+
<Link className="font-semibold text-[#8a2ae3]" href="/">
3030
here to return home
3131
</Link>
3232
</h2>

app/privacy-policy/page.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function PrivacyPolicy() {
6868
</p>
6969

7070
<section className="mb-8">
71-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
71+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
7272
1. Introduction
7373
</h2>
7474
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -80,7 +80,7 @@ export default function PrivacyPolicy() {
8080
</section>
8181

8282
<section className="mb-8">
83-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
83+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
8484
2. The Data We Collect
8585
</h2>
8686
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -104,7 +104,7 @@ export default function PrivacyPolicy() {
104104
</section>
105105

106106
<section className="mb-8">
107-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
107+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
108108
3. How We Use Your Data
109109
</h2>
110110
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -124,7 +124,7 @@ export default function PrivacyPolicy() {
124124
</section>
125125

126126
<section className="mb-8">
127-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
127+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
128128
4. Cookies and Tracking Technologies
129129
</h2>
130130
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -142,7 +142,7 @@ export default function PrivacyPolicy() {
142142
</section>
143143

144144
<section className="mb-8">
145-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
145+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
146146
5. Third-Party Services
147147
</h2>
148148
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -155,7 +155,7 @@ export default function PrivacyPolicy() {
155155
</section>
156156

157157
<section className="mb-8">
158-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
158+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
159159
6. Your Rights
160160
</h2>
161161
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -167,15 +167,15 @@ export default function PrivacyPolicy() {
167167
</section>
168168

169169
<section className="mb-8">
170-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
170+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
171171
7. Contact Us
172172
</h2>
173173
<p className="mb-4 text-gray-300 leading-relaxed">
174174
If you have any questions about this Privacy Policy, please contact us
175175
via email at{" "}
176176
<a
177177
href="mailto:contact@lap.onl?subject=Privacy%20Policy%20Inquiry"
178-
className="text-[#8a2be2] hover:underline"
178+
className="text-[#8a2ae3] hover:underline"
179179
>
180180
contact@lap.onl
181181
</a>

app/terms-of-service/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function TermsOfService() {
6868
</p>
6969

7070
<section className="mb-8">
71-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
71+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
7272
1. Acceptance of Terms
7373
</h2>
7474
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -81,7 +81,7 @@ export default function TermsOfService() {
8181
</section>
8282

8383
<section className="mb-8">
84-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
84+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
8585
2. Informational Purposes Only
8686
</h2>
8787
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -95,7 +95,7 @@ export default function TermsOfService() {
9595
</section>
9696

9797
<section className="mb-8">
98-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
98+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
9999
3. License and Use of Content
100100
</h2>
101101
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -124,7 +124,7 @@ export default function TermsOfService() {
124124
</section>
125125

126126
<section className="mb-8">
127-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
127+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
128128
4. Disclaimer of Warranties
129129
</h2>
130130
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -138,7 +138,7 @@ export default function TermsOfService() {
138138
</section>
139139

140140
<section className="mb-8">
141-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
141+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
142142
5. Limitations of Liability
143143
</h2>
144144
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -153,7 +153,7 @@ export default function TermsOfService() {
153153
</section>
154154

155155
<section className="mb-8">
156-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
156+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
157157
6. Links to Third-Party Sites
158158
</h2>
159159
<p className="mb-4 text-gray-300 leading-relaxed">
@@ -166,7 +166,7 @@ export default function TermsOfService() {
166166
</section>
167167

168168
<section className="mb-8">
169-
<h2 className="text-2xl font-semibold mb-4 text-[#8a2be2]">
169+
<h2 className="text-2xl font-semibold mb-4 text-[#8a2ae3]">
170170
7. Revisions
171171
</h2>
172172
<p className="mb-4 text-gray-300 leading-relaxed">

components/AuthorCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function AuthorCard({ authorData }) {
6363
href={link.href as string}
6464
target="_blank"
6565
aria-label={link.ariaLabel}
66-
className="text-white text-2xl hover:text-purple-500 transition ease-in-out duration-300"
66+
className="text-white text-2xl hover:text-[#8a2ae3] transition ease-in-out duration-300"
6767
>
6868
<link.Icon size={24} />
6969
</Link>

components/AuthorList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function AuthorsList({ initialAuthors }: AuthorsListProps) {
5050
<p>{author.city}</p>
5151
</div>
5252
<Link
53-
className="flex items-center gap-2 text-white hover:text-[#8a2be2] transition ease-in-out duration-300"
53+
className="flex items-center gap-2 text-white hover:text-[#8a2ae3] transition ease-in-out duration-300"
5454
href={`/team/${author.slug}`}
5555
>
5656
<span className="uppercase font-semibold">About</span>

components/CookieBanner.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function CookieBanner() {
4646
<div className="max-w-4xl mx-auto pointer-events-auto">
4747
<div className="bg-[#111111] border border-[#333333] shadow-2xl rounded-lg p-5 md:p-6 flex flex-col md:flex-row items-center justify-between gap-5 md:gap-6 relative overflow-hidden">
4848
{/* Subtle accent border on top */}
49-
<div className="absolute top-0 left-0 right-0 h-1 bg-[#8a2be2]"></div>
49+
<div className="absolute top-0 left-0 right-0 h-1 bg-[#8a2ae3]"></div>
5050

5151
<div className="flex-1 pr-6 md:pr-4">
5252
<h3 className="text-white font-semibold text-lg mb-2">
@@ -57,7 +57,7 @@ export default function CookieBanner() {
5757
All&quot;, you consent to our use of cookies. Read more in our{" "}
5858
<Link
5959
href="/privacy-policy"
60-
className="text-[#8a2be2] hover:underline"
60+
className="text-[#8a2ae3] hover:underline"
6161
>
6262
Privacy Policy
6363
</Link>
@@ -74,7 +74,7 @@ export default function CookieBanner() {
7474
</button>
7575
<button
7676
onClick={acceptCookies}
77-
className="px-5 py-2.5 rounded-md text-sm font-medium text-white bg-[#8a2be2] hover:bg-[#7a1fd1] transition-colors shadow-[0_0_15px_rgba(138,43,226,0.5)]"
77+
className="px-5 py-2.5 rounded-md text-sm font-medium text-white bg-[#8a2ae3] hover:bg-[#8a2ae3] transition-colors shadow-[0_0_15px_rgba(138,42,227,0.5)]"
7878
>
7979
Accept All
8080
</button>

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import FooterSocialLinks from "./FooterSocialsLinks";
77

88
export default function Footer() {
99
return (
10-
<footer className="overflow-hidden border-t-4 border-[#8a2be2]">
10+
<footer className="overflow-hidden border-t-4 border-[#8a2ae3]">
1111
<div className="max-w-[95rem] mx-auto px-6 mt-11">
1212
<div className="flex flex-col md:flex-row flex-wrap lg:justify-between gap-6 max-w-[95rem] w-full">
1313
<Image

components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default function Header() {
167167
<Link
168168
key={i}
169169
href={m.href}
170-
className="hover:text-[#8a2be2] transition ease-in-out duration-300"
170+
className="hover:text-[#8a2ae3] transition ease-in-out duration-300"
171171
>
172172
{m.label}
173173
</Link>

components/NewsTicker/NewsTicker.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const news = [
77

88
export default function NewsTicker() {
99
return (
10-
<div className="flex bg-[#8a2be2] text-white py-5 max-w-[95rem] w-full mx-auto relative overflow-hidden">
11-
<div className="bg-[#8a2be2] z-10 px-6 absolute left-0 top-0 h-full flex items-center">
12-
<span className="flex gap-2 bg-[#8a2be2] font-semibold uppercase whitespace-nowrap">
10+
<div className="flex bg-[#8a2ae3] text-white py-5 max-w-[95rem] w-full mx-auto relative overflow-hidden">
11+
<div className="bg-[#8a2ae3] z-10 px-6 absolute left-0 top-0 h-full flex items-center">
12+
<span className="flex gap-2 bg-[#8a2ae3] font-semibold uppercase whitespace-nowrap">
1313
<p>MISSION:</p>
1414
</span>
1515
</div>

0 commit comments

Comments
 (0)