๐Ÿ“ฆ ntindle / governance.md

๐Ÿ“„ index.css ยท 124 lines
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@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: 0 0% 98%;
    --foreground: 213 27% 17%;

    --card: 0 0% 100%;
    --card-foreground: 213 27% 17%;

    --popover: 0 0% 100%;
    --popover-foreground: 213 27% 17%;

    --primary: 213 94% 68%;
    --primary-foreground: 0 0% 100%;

    --secondary: 213 27% 92%;
    --secondary-foreground: 213 27% 17%;

    --muted: 213 27% 95%;
    --muted-foreground: 213 14% 51%;

    --accent: 213 27% 92%;
    --accent-foreground: 213 27% 17%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 213 27% 87%;
    --input: 213 27% 91%;
    --ring: 213 94% 68%;

    --radius: 0.75rem;

    /* Custom design tokens */
    --gradient-hero: linear-gradient(135deg, hsl(213 94% 68%), hsl(213 94% 78%));
    --gradient-card: linear-gradient(135deg, hsl(0 0% 100%), hsl(213 27% 98%));
    --code-bg: 213 27% 96%;
    --code-border: 213 27% 87%;
    --shadow-elegant: 0 10px 25px -5px hsl(213 27% 17% / 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --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: 213 27% 8%;
    --foreground: 213 27% 92%;

    --card: 213 27% 10%;
    --card-foreground: 213 27% 92%;

    --popover: 213 27% 10%;
    --popover-foreground: 213 27% 92%;

    --primary: 213 94% 68%;
    --primary-foreground: 0 0% 100%;

    --secondary: 213 27% 17%;
    --secondary-foreground: 213 27% 92%;

    --muted: 213 27% 17%;
    --muted-foreground: 213 14% 63%;

    --accent: 213 27% 17%;
    --accent-foreground: 213 27% 92%;

    --destructive: 0 62.8% 50%;
    --destructive-foreground: 0 0% 100%;

    --border: 213 27% 17%;
    --input: 213 27% 17%;
    --ring: 213 94% 68%;

    /* Custom design tokens for dark mode */
    --gradient-hero: linear-gradient(135deg, hsl(213 94% 68%), hsl(213 94% 58%));
    --gradient-card: linear-gradient(135deg, hsl(213 27% 10%), hsl(213 27% 12%));
    --code-bg: 213 27% 12%;
    --code-border: 213 27% 17%;
    --shadow-elegant: 0 10px 25px -5px hsl(0 0% 0% / 0.3);
    --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;
  }

  html {
    scroll-behavior: smooth;
  }

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