@riligar/agents-kit 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,31 +7,36 @@
|
|
|
7
7
|
* O código do componente deve ser limpo.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { createTheme
|
|
10
|
+
import { createTheme } from '@mantine/core'
|
|
11
11
|
|
|
12
|
-
export const
|
|
12
|
+
export const theme = createTheme({
|
|
13
13
|
fontFamily: 'Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
|
|
14
14
|
|
|
15
15
|
colors: {
|
|
16
|
-
// Escala
|
|
16
|
+
// Escala Baseada nas cores fornecidas
|
|
17
|
+
// Preto: #34322D
|
|
18
|
+
// Cinza: #F8F8F8
|
|
19
|
+
// Branco: #FFFFFF
|
|
17
20
|
gray: [
|
|
18
|
-
'#
|
|
19
|
-
'#
|
|
20
|
-
'#
|
|
21
|
-
'#
|
|
22
|
-
'#
|
|
23
|
-
'#
|
|
24
|
-
'#
|
|
25
|
-
'#
|
|
26
|
-
'#
|
|
27
|
-
'#
|
|
21
|
+
'#F8F8F8', // 0: Gray (Background)
|
|
22
|
+
'#FFFFFF', // 1: White
|
|
23
|
+
'#EEEEEE', // 2: Light Gray (Borders)
|
|
24
|
+
'#E0E0E0', // 3: Disabled
|
|
25
|
+
'#BDBDBD', // 4: Placeholder
|
|
26
|
+
'#757575', // 5: Text Secondary
|
|
27
|
+
'#616161', // 6: Text Primary Soft
|
|
28
|
+
'#424242', // 7: Text Primary
|
|
29
|
+
'#34322D', // 8: Black (Headers/Deep)
|
|
30
|
+
'#212121', // 9: Absolute Black
|
|
28
31
|
],
|
|
29
|
-
// Semânticos
|
|
30
|
-
error: ['#
|
|
31
|
-
success: ['#
|
|
32
|
+
// Semânticos neutralizados para manter monochromaticidade total
|
|
33
|
+
error: ['#F9FAFB', '#F3F4F6', '#E5E7EB', '#D1D5DB', '#9CA3AF', '#6B7280', '#4B5563', '#374151', '#1F2937', '#11181C'],
|
|
34
|
+
success: ['#F9FAFB', '#F3F4F6', '#E5E7EB', '#D1D5DB', '#9CA3AF', '#6B7280', '#4B5563', '#374151', '#1F2937', '#11181C'],
|
|
32
35
|
},
|
|
33
36
|
|
|
34
|
-
primaryColor: '
|
|
37
|
+
primaryColor: 'gray',
|
|
38
|
+
black: '#34322D',
|
|
39
|
+
white: '#FFFFFF',
|
|
35
40
|
autoContrast: true,
|
|
36
41
|
|
|
37
42
|
defaultRadius: 'md', // 6px
|
|
@@ -90,7 +95,7 @@ export const rlgTheme = createTheme({
|
|
|
90
95
|
input: {
|
|
91
96
|
border: `1px solid ${theme.colors.gray[2]}`, // Garante borda 1px
|
|
92
97
|
'&:focus': {
|
|
93
|
-
borderColor: theme.colors.
|
|
98
|
+
borderColor: theme.colors.gray[5], // Force gray focus
|
|
94
99
|
},
|
|
95
100
|
},
|
|
96
101
|
}),
|