-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcolors.go
More file actions
31 lines (29 loc) · 1.41 KB
/
colors.go
File metadata and controls
31 lines (29 loc) · 1.41 KB
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
package app
// Color constants for Handler backgrounds (designed for white text contrast)
// These colors are carefully selected to be visually distinct and provide good contrast with white text
const (
colorBlueDark = "#1e40af" // Dark blue
colorBlueMedium = "#2563eb" // Medium blue
colorBlueLight = "#3b82f6" // Light blue (not too light)
colorRedDark = "#dc2626" // Dark red
colorRedMedium = "#ef4444" // Medium red
colorRedLight = "#f87171" // Light red (not too light)
colorGreenDark = "#166534" // Dark green
colorGreenMedium = "#22c55e" // Medium green
colorGreenLight = "#4ade80" // Light green (not too light)
colorYellowDark = "#ca8a04" // Dark yellow/amber
colorYellowMedium = "#eab308" // Medium yellow
colorYellowLight = "#facc15" // Light yellow (not too light)
colorPurpleDark = "#7c2d12" // Dark brown/purple
colorPurpleMedium = "#a855f7" // Medium purple
colorPurpleLight = "#c084fc" // Light purple (not too light)
colorOrangeDark = "#c2410c" // Dark orange
colorOrangeMedium = "#f97316" // Medium orange
colorOrangeLight = "#fb923c" // Light orange (not too light)
colorTealDark = "#0f766e" // Dark teal
colorTealMedium = "#14b8a6" // Medium teal
colorTealLight = "#5eead4" // Light teal (not too light)
colorPinkDark = "#be185d" // Dark pink
colorPinkMedium = "#ec4899" // Medium pink
colorPinkLight = "#f472b6" // Light pink (not too light)
)