Skip to content

Commit 50144a5

Browse files
authored
feat: Implement and use a full brand color palette (#384)
1 parent 6ca7f43 commit 50144a5

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

src/app/roadmap/roadmap.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"last_updated": "2025-05-13",
2+
"last_updated": "2025-08-01",
33
"milestones": [
44
{
55
"done": true,

src/components/FooterMarketing.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function FooterMarketing() {
122122
</div>
123123
</div>
124124
<div className="mt-16 flex border-t border-white/10 pt-8 sm:mt-20 lg:mt-24">
125-
<p className="text-xs leading-5 text-gray-400 mr-auto">&copy; 2024 n0, inc.</p>
125+
<p className="text-xs leading-5 text-gray-400 mr-auto">&copy; 2025 n0, inc.</p>
126126
<ThemeToggle />
127127
</div>
128128
</div>

src/components/ThemeToggle.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function ThemeToggle() {
3535
return (
3636
<button
3737
type="button"
38-
className="flex h-6 w-6 items-center justify-center rounded-md transition hover:bg-zinc-900/5 dark:hover:bg-white/5"
38+
className="flex h-6 w-6 items-center justify-center rounded-md transition hover:bg-zinc-900/5 dark:hover:bg-white/5 cursor-pointer"
3939
aria-label={mounted ? `Switch to ${otherTheme} theme` : 'Toggle theme'}
4040
onClick={() => setTheme(otherTheme)}
4141
>

src/components/home/UseCases.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export function UseCaseScroller() {
101101
<button
102102
key={category}
103103
onClick={() => handleCategoryChange(category)}
104-
className={`px-2 py-1 text-sm font-semibold transition-colors bg-iroh-gray-200/10 ${
104+
className={`px-2 py-1 text-sm font-semibold transition-colors bg-iroh-gray-200/10 cursor-pointer ${
105105
selectedCategory === category ? "text-iroh-purple-500" : "text-iroh-gray-800/20 dark:text-iroh-gray-400 hover:text-iroh-purple-500"
106106
}`}
107107
>

src/components/mdx.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function InfoIcon(props) {
3636

3737
export function Note({children}) {
3838
return (
39-
<div className="my-6 flex gap-2.5 rounded-2xl border border-iroh-purple-500/20 bg-iroh-purple-200/10 p-4 leading-6 text-iroh-purple-900 dark:border-iroh-purple-500/30 dark:bg-iroh-purple-500/5 dark:text-iroh-purple-200 dark:[--tw-prose-links-hover:theme(colors.irohPurple.300)] dark:[--tw-prose-links:var(--color-white)]">
39+
<div className="my-6 flex gap-2.5 rounded-2xl border border-iroh-purple-200 bg-iroh-purple-50 p-4 leading-6 text-iroh-purple-900 dark:border-iroh-purple-500/30 dark:bg-iroh-purple-500/5 dark:text-iroh-purple-200 dark:[--tw-prose-links-hover:theme(colors.irohPurple.300)] dark:[--tw-prose-links:var(--color-white)]">
4040
<InfoIcon className="mt-1 h-4 w-4 flex-none fill-iroh-purple-500 stroke-white dark:fill-iroh-purple-200/20 dark:stroke-iroh-purple-200" />
4141
<div className="[&>:first-child]:mt-0 [&>:last-child]:mb-0">
4242
{children}

tailwind.config.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ export default {
8080
1000 : "#0E0E0F",
8181
},
8282
'irohPurple': {
83-
// TODO - actual color gradation
84-
50: "#7C7CFF",
85-
100: "#7C7CFF",
86-
200: "#7C7CFF",
87-
300: "#7C7CFF",
88-
400: "#7C7CFF",
83+
50: "#EEF1FF",
84+
100: "#E1E8FF",
85+
200: "#C9D4FF",
86+
300: "#A8B6FF",
87+
400: "#8790FF",
8988
500: "#7C7CFF",
90-
600: "#7C7CFF",
91-
700: "#7C7CFF",
92-
800: "#7C7CFF",
93-
900: "#7C7CFF",
89+
600: "#6257F7",
90+
700: "#4E3FE0",
91+
800: "#3225C6",
92+
900: "#2D279C",
93+
950: "#1D175B",
9494
}
9595
},
9696
animation: {

0 commit comments

Comments
 (0)