Skip to content

Commit 08ccda2

Browse files
committed
font
1 parent 050b00e commit 08ccda2

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

apps/dashboard/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export function Header({ onConnect }: HeaderProps) {
5555
<line x1="52" y1="32" x2="60" y2="32"/>
5656
</g>
5757
</svg>
58-
<span>RayLens</span>
58+
<span className="brand-text">RAYLENS</span>
5959
</div>
6060

6161
<div className="header-divider" />

apps/dashboard/src/styles/app.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,14 @@
269269
height: 28px;
270270
}
271271

272+
.header-logo .brand-text {
273+
font-family: var(--font-brand);
274+
font-size: 18px;
275+
font-weight: 400;
276+
letter-spacing: 2px;
277+
color: #38bdf8;
278+
}
279+
272280
.header-divider {
273281
width: 1px;
274282
height: 24px;

apps/dashboard/src/styles/global.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Exo+2:wght@600;700;800&family=Bebas+Neue&family=Russo+One&display=swap');
2+
13
:root {
24
/* Dark theme inspired by trading terminals */
35
--bg-base: #0a0a0f;
@@ -20,6 +22,7 @@
2022

2123
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
2224
--font-sans: 'Space Grotesk', system-ui, sans-serif;
25+
--font-brand: 'Russo One', sans-serif;
2326
}
2427

2528
* {

0 commit comments

Comments
 (0)