| 6 | } |
| 7 | |
| 8 | interface FigmaTheme { |
| 9 | id: string; |
| 10 | name: string; |
| 11 | description: string; |
| 12 | tokens: { |
| 13 | light: { |
| 14 | colors: Record<string, FigmaRGBA>; |
| 15 | numbers: Record<string, string>; |
| 16 | }; |
| 17 | dark: { |
| 18 | colors: Record<string, FigmaRGBA>; |
| 19 | numbers: Record<string, string>; |
| 20 | }; |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | const API_BASE_URL = "https://www.tinte.dev"; |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected