33 lines
1001 B
JavaScript
33 lines
1001 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.useHoudini = useHoudini;
|
|
const is_browser_1 = require("../env/is-browser");
|
|
let houdiniRegistered = false;
|
|
function useHoudini() {
|
|
if (!is_browser_1.isBrowser)
|
|
return;
|
|
if (!window.CSS)
|
|
return;
|
|
if (!houdiniRegistered) {
|
|
houdiniRegistered = true;
|
|
if ('registerProperty' in (window === null || window === void 0 ? void 0 : window.CSS)) {
|
|
try {
|
|
;
|
|
CSS.registerProperty({
|
|
name: '--n-color-start',
|
|
syntax: '<color>',
|
|
inherits: false,
|
|
initialValue: '#0000'
|
|
});
|
|
CSS.registerProperty({
|
|
name: '--n-color-end',
|
|
syntax: '<color>',
|
|
inherits: false,
|
|
initialValue: '#0000'
|
|
});
|
|
}
|
|
catch (_a) { }
|
|
}
|
|
}
|
|
}
|