summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/classes/css-helper.ts
blob: e5caef761d46e36cee6728bea7e26c8d4b05fa38 (plain)
1
2
3
4
5
export class CssHelper {
  propertyValue(propertyName: string): string {
    return getComputedStyle(document.body).getPropertyValue(`--${propertyName}`);
  }
}