@lorenzo.franzone/tws
Version:
Tailwind 4 Styles Generator
21 lines (20 loc) • 1.13 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.VALID_CONFIG_TYPES = exports.AVAILABLE_STYLES = exports.STYLES = exports.APP_FONT = exports.CONFIG_DIR = exports.CONFIG_DIR_NAME = exports.APP_DESCRIPTION = exports.APP_NAME = void 0;
const path_1 = __importDefault(require("path"));
exports.APP_NAME = "tws";
exports.APP_DESCRIPTION = "Tailwindcss Styles Generator";
exports.CONFIG_DIR_NAME = "tws-config";
exports.CONFIG_DIR = path_1.default.resolve(process.cwd(), `${exports.CONFIG_DIR_NAME}`);
exports.APP_FONT = "ANSI Regular";
exports.STYLES = {
colors: { base: 'config-base.json', example: 'config-example.json' },
typography: { base: 'config-base.json', example: 'config-example.json' },
spacing: { base: 'config-base.json', example: 'config-example.json' },
layout: { base: 'config-base.json', example: 'config-example.json' }
};
exports.AVAILABLE_STYLES = Object.keys(exports.STYLES);
exports.VALID_CONFIG_TYPES = ['base', 'example'];