File size: 2,527 Bytes
bb8f662
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Platform } from "react-native";
export const theme = {
  colors: {
    primary: "#2563EB", 
    secondary: "#1E40AF", 
    accent: "#3B82F6", 
    background: "#0F172A", 
    surface: "#1E293B", 
    card: "#1E293B", 
    text: "#FFFFFF", 
    textSecondary: "#94A3B8", 
    error: "#EF4444", 
    success: "#10B981", 
    warning: "#F59E0B", 
    info: "#3B82F6", 
    gradientStart: "#1E40AF", 
    gradientMiddle: "#2563EB", 
    gradientEnd: "#3B82F6", 
    gradient2Start: "#0F172A", 
    gradient2Middle: "#1E293B", 
    gradient2End: "#334155", 
    baseModel: "#3B82F6", 
    spatialModel: "#2563EB", 
    buttonPrimary: "#2563EB",
    buttonSecondary: "#1E293B",
    inputBg: "#1E293B",
    inputBorder: "#334155", 
    glassBackground: "rgba(30, 41, 59, 0.7)", 
    glassBorder: "rgba(59, 130, 246, 0.3)", 
  },
  animations: {
    typingSpeed: 30, 
    skeletonPulse: 1500, 
    confidenceAnimation: 1000, 
  },
  spacing: {
    xs: 4,
    sm: 8,
    md: 16,
    lg: 24,
    xl: 32,
    xxl: 48,
  },
  borderRadius: {
    sm: 8,
    md: 12,
    lg: 16,
    xl: 24,
    full: 9999,
  },
  typography: {
    h1: {
      fontSize: 32,
      fontWeight: "bold",
      lineHeight: 40,
    },
    h2: {
      fontSize: 24,
      fontWeight: "bold",
      lineHeight: 32,
    },
    h3: {
      fontSize: 20,
      fontWeight: "600",
      lineHeight: 28,
    },
    body: {
      fontSize: 16,
      fontWeight: "normal",
      lineHeight: 24,
    },
    caption: {
      fontSize: 14,
      fontWeight: "normal",
      lineHeight: 20,
    },
    small: {
      fontSize: 12,
      fontWeight: "normal",
      lineHeight: 16,
    },
  },
  shadows: {
    sm: Platform.select({
      ios: {
        shadowColor: "#000000",
        shadowOffset: { width: 0, height: 2 },
        shadowOpacity: 0.1,
        shadowRadius: 4,
      },
      android: {
        elevation: 2,
      },
      default: {
        elevation: 2,
      },
    }),
    md: Platform.select({
      ios: {
        shadowColor: "#000000",
        shadowOffset: { width: 0, height: 4 },
        shadowOpacity: 0.15,
        shadowRadius: 8,
      },
      android: {
        elevation: 4,
      },
      default: {
        elevation: 4,
      },
    }),
    lg: Platform.select({
      ios: {
        shadowColor: "#000000",
        shadowOffset: { width: 0, height: 8 },
        shadowOpacity: 0.2,
        shadowRadius: 16,
      },
      android: {
        elevation: 6,
      },
      default: {
        elevation: 6,
      },
    }),
  },
};