Nischal Subedi commited on
Commit
ca9a9f1
·
1 Parent(s): 6d02999
Files changed (1) hide show
  1. app.py +8 -10
app.py CHANGED
@@ -301,7 +301,7 @@ Answer:"""
301
  --primary-color: #FF8C00;
302
  --primary-hover: #E07B00;
303
  --background-primary: hsl(30, 100%, 99.9%);
304
- --background-secondary: hsl(30, 100%, 96%);
305
  --text-primary: #4A3C32;
306
  --text-secondary: #8C7B6F;
307
  --border-color: hsl(30, 70%, 85%);
@@ -312,9 +312,9 @@ Answer:"""
312
  --error-bg: #FFF0E0;
313
  --error-border: #FFD2B2;
314
  --error-text: #E05C00;
315
- /* Updated variables for the light orange gradient */
316
- --gradient-start: #FFB266; /* Light orange */
317
- --gradient-end: #FFCC99; /* Even lighter orange, almost peachy */
318
  }
319
 
320
  /* Dark theme variables */
@@ -322,7 +322,7 @@ Answer:"""
322
  --primary-color: #FF8C00;
323
  --primary-hover: #FFB366;
324
  --background-primary: #1A1A1A;
325
- --background-secondary: #2D2D2D;
326
  --text-primary: #E0E0E0;
327
  --text-secondary: #A0A0A0;
328
  --border-color: #454545;
@@ -333,9 +333,9 @@ Answer:"""
333
  --error-bg: #3A2A2A;
334
  --error-border: #FF8C00;
335
  --error-text: #FF8C00;
336
- /* Updated variables for the light orange gradient in dark theme */
337
- --gradient-start: #FFB266; /* Light orange */
338
- --gradient-end: #FFCC99; /* Even lighter orange, almost peachy */
339
  }
340
 
341
  body, html {
@@ -431,8 +431,6 @@ Answer:"""
431
  gap: 1.25rem !important;
432
  }
433
 
434
-
435
-
436
  .dashboard-card-section {
437
  background-color: var(--background-primary) !important;
438
  border: 2px solid var(--border-color) !important;
 
301
  --primary-color: #FF8C00;
302
  --primary-hover: #E07B00;
303
  --background-primary: hsl(30, 100%, 99.9%);
304
+ --background-secondary: #FFE8CC; /* Changed to light orange */
305
  --text-primary: #4A3C32;
306
  --text-secondary: #8C7B6F;
307
  --border-color: hsl(30, 70%, 85%);
 
312
  --error-bg: #FFF0E0;
313
  --error-border: #FFD2B2;
314
  --error-text: #E05C00;
315
+ /* New variables for the orange gradient */
316
+ --gradient-start: #D68A2E; /* Darker shade of orange-brown */
317
+ --gradient-end: #F5B261; /* Lighter shade of orange-brown */
318
  }
319
 
320
  /* Dark theme variables */
 
322
  --primary-color: #FF8C00;
323
  --primary-hover: #FFB366;
324
  --background-primary: #1A1A1A;
325
+ --background-secondary: #FFCC99; /* Slightly darker light orange for dark theme */
326
  --text-primary: #E0E0E0;
327
  --text-secondary: #A0A0A0;
328
  --border-color: #454545;
 
333
  --error-bg: #3A2A2A;
334
  --error-border: #FF8C00;
335
  --error-text: #FF8C00;
336
+ /* New variables for the orange gradient in dark theme */
337
+ --gradient-start: #D68A2E; /* Keep the same gradient for consistency */
338
+ --gradient-end: #F5B261; /* Keep the same gradient for consistency */
339
  }
340
 
341
  body, html {
 
431
  gap: 1.25rem !important;
432
  }
433
 
 
 
434
  .dashboard-card-section {
435
  background-color: var(--background-primary) !important;
436
  border: 2px solid var(--border-color) !important;