ShivaamShukla commited on
Commit
51b78bc
·
verified ·
1 Parent(s): 1402a2b

still black background is there and font color should be dark black

Browse files
Files changed (1) hide show
  1. index.html +4 -4
index.html CHANGED
@@ -27,7 +27,7 @@
27
  body {
28
  font-family: 'Inter', sans-serif;
29
  background: white;
30
- color: black;
31
  min-height: 100vh;
32
  }
33
  .calculator-btn {
@@ -51,7 +51,7 @@
51
  }
52
  .history-item {
53
  transition: all 0.3s ease;
54
- }
55
  .history-item:hover {
56
  background: rgba(99, 102, 241, 0.1);
57
  }
@@ -84,14 +84,14 @@
84
  <h1 class="text-4xl md:text-5xl font-bold mb-2 bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">
85
  Shivaam Shukla Calculator 🧮
86
  </h1>
87
- <p class="text-gray-300 max-w-2xl mx-auto">
88
  Advanced calculator with GST, unit conversion, trigonometry, matrix operations, and more. All in one place!
89
  </p>
90
  </header>
91
  <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
92
  <!-- Calculator Section -->
93
  <div class="lg:col-span-2">
94
- <div class="bg-dark rounded-2xl p-6 shadow-xl">
95
  <!-- Mode Selector -->
96
  <div class="flex flex-wrap gap-2 mb-6">
97
  <button id="basicMode" class="mode-selector active px-4 py-2 rounded-lg">Basic</button>
 
27
  body {
28
  font-family: 'Inter', sans-serif;
29
  background: white;
30
+ color: #000000;
31
  min-height: 100vh;
32
  }
33
  .calculator-btn {
 
51
  }
52
  .history-item {
53
  transition: all 0.3s ease;
54
+ }
55
  .history-item:hover {
56
  background: rgba(99, 102, 241, 0.1);
57
  }
 
84
  <h1 class="text-4xl md:text-5xl font-bold mb-2 bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">
85
  Shivaam Shukla Calculator 🧮
86
  </h1>
87
+ <p class="text-gray-700 max-w-2xl mx-auto">
88
  Advanced calculator with GST, unit conversion, trigonometry, matrix operations, and more. All in one place!
89
  </p>
90
  </header>
91
  <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
92
  <!-- Calculator Section -->
93
  <div class="lg:col-span-2">
94
+ <div class="bg-white rounded-2xl p-6 shadow-xl border border-gray-200">
95
  <!-- Mode Selector -->
96
  <div class="flex flex-wrap gap-2 mb-6">
97
  <button id="basicMode" class="mode-selector active px-4 py-2 rounded-lg">Basic</button>