+
Kartu
Masked Card: {data.maskedCard}
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 689ed25..e95b6d9 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -13,21 +13,15 @@ body {
background-color: #ffffff;
color: #000000;
}
-.light, html[data-theme="light"] body { background-color: #ffffff; color: #000000; }
-.dark body { background-color: #000000; color: #ffffff; }
-a { color: #dc2626; }
-a:hover { color: #b91c1c; }
-.focus-ring { outline: none; box-shadow: 0 0 0 2px rgba(220,38,38,1), 0 0 0 4px var(--focus-offset, #ffffff); }
-.dark .focus-ring { box-shadow: 0 0 0 2px rgba(220,38,38,1), 0 0 0 4px #000000; }
+a { color: #0c1f3f; }
+a:hover { color: #0a1a35; }
+
+.focus-ring { outline: none; box-shadow: 0 0 0 2px rgba(37,99,235,1), 0 0 0 4px var(--focus-offset, #ffffff); }
.card {
border-radius: var(--radius);
border: 1px solid rgba(0,0,0,0.1);
background-color: #ffffff;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
-}
-.dark .card {
- background-color: #000000;
- border-color: rgba(255,255,255,0.2);
}
\ No newline at end of file
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 8b5c654..504d824 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -7,20 +7,20 @@ export default {
extend: {
colors: {
brand: {
- 50: '#fef2f2',
- 100: '#fee2e2',
- 200: '#fecaca',
- 300: '#fca5a5',
- 400: '#f87171',
- 500: '#ef4444',
- 600: '#dc2626',
- 700: '#b91c1c',
- 800: '#991b1b',
- 900: '#7f1d1d',
+ 50: '#f1f5fb',
+ 100: '#e3e9f5',
+ 200: '#c7d3ea',
+ 300: '#a6b9dd',
+ 400: '#6f8bc8',
+ 500: '#3a5da7',
+ 600: '#0c1f3f',
+ 700: '#0a1a35',
+ 800: '#08152a',
+ 900: '#050f20',
},
},
boxShadow: {
- focus: '0 0 0 3px rgba(220,38,38,0.45)',
+ focus: '0 0 0 3px rgba(37,99,235,0.45)',
},
},
},