init commit

This commit is contained in:
Carlos
2026-02-21 10:33:18 +01:00
parent c863a943ed
commit 9d955bf338
9512 changed files with 2015317 additions and 1305 deletions

View File

@@ -0,0 +1,30 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.checkerboardBackgroundImage = exports.checkerboardBackgroundColor = exports.getCheckerboardBackgroundPos = exports.getCheckerboardBackgroundSize = void 0;
const getCheckerboardBackgroundSize = (size) => `${size}px ${size}px`;
exports.getCheckerboardBackgroundSize = getCheckerboardBackgroundSize;
const getCheckerboardBackgroundPos = (size) => `0 0, ${size / 2}px 0, ${size / 2}px -${size / 2}px, 0px ${size / 2}px`;
exports.getCheckerboardBackgroundPos = getCheckerboardBackgroundPos;
const checkerboardBackgroundColor = (checkerboard) => {
if (checkerboard) {
return 'white';
}
return 'black';
};
exports.checkerboardBackgroundColor = checkerboardBackgroundColor;
const checkerboardBackgroundImage = (checkerboard) => {
if (checkerboard) {
return `
linear-gradient(
45deg,
rgba(0, 0, 0, 0.1) 25%,
transparent 25%
),
linear-gradient(135deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%),
linear-gradient(135deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%)
`;
}
return undefined;
};
exports.checkerboardBackgroundImage = checkerboardBackgroundImage;