Add Config Files
This commit is contained in:
parent
ade387bdb6
commit
f071a73fdb
520 changed files with 45353 additions and 1 deletions
23
.config/hypr/node_modules/@catppuccin/palette/script/mod.js
generated
vendored
Normal file
23
.config/hypr/node_modules/@catppuccin/palette/script/mod.js
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.flavorEntries = exports.flavors = void 0;
|
||||
const palette_js_1 = __importDefault(require("./palette.js"));
|
||||
const entriesFromObject = (obj) => Object.entries(obj);
|
||||
/**
|
||||
* All flavors of Catppuccin
|
||||
*/
|
||||
exports.flavors = entriesFromObject(palette_js_1.default)
|
||||
.reduce((acc, [flavorName, flavor]) => {
|
||||
acc[flavorName] = {
|
||||
...flavor,
|
||||
colorEntries: entriesFromObject(flavor.colors),
|
||||
};
|
||||
return acc;
|
||||
}, {});
|
||||
/**
|
||||
* A typed `Object.entries()` iterable of all Catppuccin flavors
|
||||
*/
|
||||
exports.flavorEntries = entriesFromObject(exports.flavors);
|
Loading…
Add table
Add a link
Reference in a new issue