Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ html[data-theme="modern-light-blue"] {
--card-foreground: #0f172a;
--card-muted: #eff4fb;
--border: #d9e2ef;
--accent: #5b8def;
--accent-secondary: #8eb7ff;
--accent: #2563eb;
--accent-secondary: #1d4ed8;
--ring: #9cc5ff;
--focus-ring: #5b8def;
--focus-ring: #2563eb;
--success: #059669;
--warning: #d97706;
--destructive: #dc2626;
Expand Down
2 changes: 1 addition & 1 deletion src/components/StatsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ function StatBox({
<div
style={{
fontSize: 13,
color: "#6b7280",
color: "#4b5563",
marginTop: 4,
}}
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/landing/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -852,12 +852,12 @@ function SetupSection() {
<div style={{ width: 10, height: 10, borderRadius: '50%', background: '#f59e0b' }} />
<div style={{ width: 10, height: 10, borderRadius: '50%', background: '#10b981' }} />
</div>
<div style={{ color: '#10b981', fontWeight: 500 }}># start tracking in 30 seconds</div>
<div style={{ color: 'var(--success)', fontWeight: 500 }}># start tracking in 30 seconds</div>
<div style={{ color: TEXT }}>
<span style={{ color: A }}>→</span> sign in at{' '}
<span style={{ color: A }}>devtrack.vercel.app</span>
</div>
<div style={{ color: '#10b981', marginTop: 8, fontWeight: 500 }}># or self-host</div>
<div style={{ color: 'var(--success)', marginTop: 8, fontWeight: 500 }}># or self-host</div>
<div style={{ color: TEXT }}>
<span style={{ color: A }}>$</span> git clone github.com/…/devtrack
</div>
Expand Down