Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
common
/
resources
/
client
/
ui
/
themes
/
utils
/
Editing: theme-value-to-hex.ts
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; } }
Save
Cancel