9
common/resources/client/ui/themes/utils/theme-value-to-hex.ts
Executable file
9
common/resources/client/ui/themes/utils/theme-value-to-hex.ts
Executable file
@@ -0,0 +1,9 @@
|
||||
import {parseColor} from '@react-stately/color';
|
||||
|
||||
export function themeValueToHex(value: string): string {
|
||||
try {
|
||||
return parseColor(`rgb(${value.split(' ').join(',')})`).toString('hex');
|
||||
} catch (e) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user