mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-07 09:36:11 -08:00
Adding missing semi-colon in src/color.ts ln:8
This commit is contained in:
@@ -5,7 +5,7 @@ function getRgb(color: string): [number, number, number] {
|
|||||||
parseInt(color.substr(1, 2), 16),
|
parseInt(color.substr(1, 2), 16),
|
||||||
parseInt(color.substr(3, 2), 16),
|
parseInt(color.substr(3, 2), 16),
|
||||||
parseInt(color.substr(5, 2), 16)
|
parseInt(color.substr(5, 2), 16)
|
||||||
]
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
function toCssString(rgb: [number, number, number]): string {
|
function toCssString(rgb: [number, number, number]): string {
|
||||||
|
|||||||
Reference in New Issue
Block a user