File size: 1,073 Bytes
9826f0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* This page contains base theme colors for the app */
:root {
    /* Base backgrounds */
    --bg-main: #0c0d23;
    --bg-glass: rgba(28, 20, 55, 0.55);
    --bg-glass-strong: rgba(28, 20, 55, 0.85);
    --bg-gradient: linear-gradient(135deg, #1b1b40, #3a1f5f);

    /* Accents */
    --accent-primary: #ff7ce5;
    --accent-secondary: #7ac5ff;
    --accent-glow: rgba(255, 124, 229, 0.5);

    /* Borders and shadows */
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 15px 35px rgba(255, 124, 229, 0.3);

    /* Text */
    --text-main: #f0f0ff;
    --text-muted: #b9b6ff;

    /* Chat messages */
    --user-message: linear-gradient(135deg, #ff9de0, #7ac5ff);
    --bot-message: linear-gradient(135deg, #ff9de0, #7ac5ff);

    /* Buttons */
    --btn-bg: linear-gradient(135deg, #7ac5ff, #9aa4ff);
    --btn-bg-hover: linear-gradient(135deg, #8fd0ff, #aab3ff);
    --btn-bg-active: linear-gradient(135deg, #6bb6f5, #8f98ff);

    --btn-text: #0c0d23;
    --btn-border: rgba(122, 197, 255, 0.45);

    --btn-glow: 0 0 18px rgba(122, 197, 255, 0.55);
}