Convert color.js to color.mjs

This commit is contained in:
RMidhunSuresh 2022-07-11 12:03:07 +05:30
parent c9bca52e82
commit d5e24bf6e8
2 changed files with 3 additions and 4 deletions

View File

@ -13,10 +13,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import {offColor} from 'off-color';
const offColor = require("off-color").offColor;
module.exports.derive = function (value, operation, argument, isDark) {
export function derive(value, operation, argument, isDark) {
const argumentAsNumber = parseInt(argument);
if (isDark) {
// For dark themes, invert the operation

View File

@ -8,8 +8,8 @@ const path = require("path");
const manifest = require("./package.json");
const version = manifest.version;
const compiledVariables = new Map();
const derive = require("./scripts/postcss/color").derive;
const replacer = require("./scripts/postcss/svg-colorizer").buildColorizedSVG;
import {derive} from "./scripts/postcss/color.mjs";
const commonOptions = {
logLevel: "warn",