@riligar/agents-kit 1.1.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, rem } from '@mantine/core'
10
+ import { createTheme } from '@mantine/core'
11
11
 
12
- export const rlgTheme = createTheme({
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 Neutra Universal (Substitui o gray padrão)
16
+ // Escala Baseada nas cores fornecidas
17
+ // Preto: #34322D
18
+ // Cinza: #F8F8F8
19
+ // Branco: #FFFFFF
17
20
  gray: [
18
- '#F9FAFB', // 0: App Background
19
- '#F3F4F6', // 1: Hover/Subtle
20
- '#E5E7EB', // 2: Borders
21
- '#D1D5DB', // 3: Disabled
22
- '#9CA3AF', // 4: Placeholder
23
- '#6B7280', // 5: Text Secondary
24
- '#4B5563', // 6: Text Primary Soft
25
- '#374151', // 7: Text Primary
26
- '#1F2937', // 8: Headers
27
- '#11181C', // 9: Absolute Black
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: ['#FEF2F2', '#FEE2E2', '#FECACA', '#FCA5A5', '#F87171', '#EF4444', '#DC2626', '#B91C1C', '#991B1B', '#7F1D1D'],
31
- success: ['#F0FDF4', '#DCFCE7', '#BBF7D0', '#86EFAC', '#4ADE80', '#22C55E', '#16A34A', '#15803D', '#166534', '#14532D'],
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: 'dark', // Escala dark mapeada para cinzas
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.dark[8],
98
+ borderColor: theme.colors.gray[5], // Force gray focus
94
99
  },
95
100
  },
96
101
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riligar/agents-kit",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -9,6 +9,10 @@
9
9
  "bin": {
10
10
  "agents-kit": "bin/cli.js"
11
11
  },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/riligar/agent-kit.git"
15
+ },
12
16
  "files": [
13
17
  "bin",
14
18
  ".agent"