File size: 3,225 Bytes
538d81e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. 
All colors MUST be HSL.
*/

@layer base {
  :root {
    --background: 220 25% 97%;
    --foreground: 220 15% 15%;

    --card: 0 0% 100%;
    --card-foreground: 220 15% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 220 15% 15%;

    --primary: 200 95% 45%;
    --primary-foreground: 0 0% 100%;

    --secondary: 180 60% 50%;
    --secondary-foreground: 0 0% 100%;

    --muted: 220 15% 92%;
    --muted-foreground: 220 10% 45%;

    --accent: 280 65% 55%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 75% 55%;
    --destructive-foreground: 0 0% 100%;

    --border: 220 15% 88%;
    --input: 220 15% 88%;
    --ring: 200 95% 45%;

    --radius: 0.75rem;
    
    --science-blue: 210 100% 60%;
    --science-teal: 175 70% 45%;
    --science-purple: 270 60% 60%;
    --lab-surface: 220 20% 98%;
    --lab-shadow: 220 30% 85%;
    
    --gradient-hero: linear-gradient(135deg, hsl(200 95% 45%) 0%, hsl(175 70% 45%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 25% 99%) 100%);
    --gradient-glow: radial-gradient(circle at 50% 0%, hsl(200 95% 45% / 0.15), transparent 70%);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-elegant: 0 4px 24px -2px hsl(220 30% 50% / 0.12);
    --shadow-float: 0 8px 32px -4px hsl(200 95% 45% / 0.25);

    --sidebar-background: 0 0% 98%;

    --sidebar-foreground: 240 5.3% 26.1%;

    --sidebar-primary: 240 5.9% 10%;

    --sidebar-primary-foreground: 0 0% 98%;

    --sidebar-accent: 240 4.8% 95.9%;

    --sidebar-accent-foreground: 240 5.9% 10%;

    --sidebar-border: 220 13% 91%;

    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 220 25% 8%;
    --foreground: 220 15% 92%;

    --card: 220 20% 12%;
    --card-foreground: 220 15% 92%;

    --popover: 220 20% 12%;
    --popover-foreground: 220 15% 92%;

    --primary: 200 95% 55%;
    --primary-foreground: 0 0% 100%;

    --secondary: 180 60% 45%;
    --secondary-foreground: 0 0% 100%;

    --muted: 220 15% 18%;
    --muted-foreground: 220 10% 60%;

    --accent: 280 65% 60%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 75% 55%;
    --destructive-foreground: 0 0% 100%;

    --border: 220 15% 22%;
    --input: 220 15% 22%;
    --ring: 200 95% 55%;
    
    --lab-surface: 220 20% 10%;
    --lab-shadow: 220 30% 5%;
    
    --gradient-hero: linear-gradient(135deg, hsl(200 95% 35%) 0%, hsl(175 70% 35%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(220 20% 12%) 0%, hsl(220 25% 10%) 100%);
    --gradient-glow: radial-gradient(circle at 50% 0%, hsl(200 95% 45% / 0.2), transparent 70%);
    
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
  }
}