(definition: ColorDefinition)
| 150 | }; |
| 151 | |
| 152 | export function parseColorDefinition(definition: ColorDefinition): ThemeColor { |
| 153 | return { |
| 154 | color: definition.color ? hexToRgba(definition.color) : undefined, |
| 155 | backgroundColor: definition.backgroundColor |
| 156 | ? hexToRgba(definition.backgroundColor) |
| 157 | : undefined, |
| 158 | modifiers: definition.modifiers, |
| 159 | }; |
| 160 | } |
| 161 | |
| 162 | function loadThemeDefinition( |
| 163 | themesDir: string, |
no test coverage detected