New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

attrcss

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attrcss - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

src/getPropertiesArray.js

2

package.json

@@ -6,3 +6,3 @@ {

"repository": "https://github.com/ImedAdel/attrcss.git",
"version": "0.0.2",
"version": "0.0.3",
"main": "./src/index.js",

@@ -9,0 +9,0 @@ "bin": {

@@ -28,2 +28,3 @@ <br />

PS. **Use PurgeCSS!**
PPS. I only implemented TailwindCSS colors. I got bored after that 🦦
const fs = require("fs");
const { generator } = require("./generator");
const isValidOutputFile = path => RegExp(/\.(css|sass|scss)$/).test(path);
const isValidInputFile = path => RegExp(/\.(json)$/).test(path);
function buildAction(opts) {
if (!!opts.input && !isValidInputFile(opts.input)) {
console.error("> The theme must be a JSON file :)");
return;
}
if (!!opts.output && !isValidOutputFile(opts.output)) {
console.error("> The output file must be a CSS file :)");
return;
}
const src = opts.input || null;
const dest = opts.output || "attr.css";
console.log(`> building from ${src || `default theme`} to ${dest}`);
console.log(`> Building from ${src || `the default theme`} to ${dest}`);
const generatedCss = generator(src);
fs.writeFile(dest, generatedCss, err => {
if (err) {
console.log("Oopsie :(\n");
console.log("> Oopsie :( Try again, maybe?\n");
console.error(err);
return;
}
console.log("Done!");
console.log("> Done! 🦦");
});
}
exports.buildAction = buildAction;
{
"prefix": "",
"separator": ".",
"prefix": "",
"separator": ".",
"theme": {
"screens": {
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px"
},
"theme": {
"screens": {
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px"
},
"colors": {
"transparent": "transparent",
"colors": {
"transparent": "transparent",
"black": "#000",
"white": "#fff",
"black": "#000",
"white": "#fff",
"gray": {
"100": "#f7fafc",
"200": "#edf2f7",
"300": "#e2e8f0",
"400": "#cbd5e0",
"500": "#a0aec0",
"600": "#718096",
"700": "#4a5568",
"800": "#2d3748",
"900": "#1a202c"
},
"red": {
"100": "#fff5f5",
"200": "#fed7d7",
"300": "#feb2b2",
"400": "#fc8181",
"500": "#f56565",
"600": "#e53e3e",
"700": "#c53030",
"800": "#9b2c2c",
"900": "#742a2a"
},
"orange": {
"100": "#fffaf0",
"200": "#feebc8",
"300": "#fbd38d",
"400": "#f6ad55",
"500": "#ed8936",
"600": "#dd6b20",
"700": "#c05621",
"800": "#9c4221",
"900": "#7b341e"
},
"yellow": {
"100": "#fffff0",
"200": "#fefcbf",
"300": "#faf089",
"400": "#f6e05e",
"500": "#ecc94b",
"600": "#d69e2e",
"700": "#b7791f",
"800": "#975a16",
"900": "#744210"
},
"green": {
"100": "#f0fff4",
"200": "#c6f6d5",
"300": "#9ae6b4",
"400": "#68d391",
"500": "#48bb78",
"600": "#38a169",
"700": "#2f855a",
"800": "#276749",
"900": "#22543d"
},
"teal": {
"100": "#e6fffa",
"200": "#b2f5ea",
"300": "#81e6d9",
"400": "#4fd1c5",
"500": "#38b2ac",
"600": "#319795",
"700": "#2c7a7b",
"800": "#285e61",
"900": "#234e52"
},
"blue": {
"100": "#ebf8ff",
"200": "#bee3f8",
"300": "#90cdf4",
"400": "#63b3ed",
"500": "#4299e1",
"600": "#3182ce",
"700": "#2b6cb0",
"800": "#2c5282",
"900": "#2a4365"
},
"indigo": {
"100": "#ebf4ff",
"200": "#c3dafe",
"300": "#a3bffa",
"400": "#7f9cf5",
"500": "#667eea",
"600": "#5a67d8",
"700": "#4c51bf",
"800": "#434190",
"900": "#3c366b"
},
"purple": {
"100": "#faf5ff",
"200": "#e9d8fd",
"300": "#d6bcfa",
"400": "#b794f4",
"500": "#9f7aea",
"600": "#805ad5",
"700": "#6b46c1",
"800": "#553c9a",
"900": "#44337a"
},
"pink": {
"100": "#fff5f7",
"200": "#fed7e2",
"300": "#fbb6ce",
"400": "#f687b3",
"500": "#ed64a6",
"600": "#d53f8c",
"700": "#b83280",
"800": "#97266d",
"900": "#702459"
}
}
}
"gray": {
"100": "#f7fafc",
"200": "#edf2f7",
"300": "#e2e8f0",
"400": "#cbd5e0",
"500": "#a0aec0",
"600": "#718096",
"700": "#4a5568",
"800": "#2d3748",
"900": "#1a202c"
},
"red": {
"100": "#fff5f5",
"200": "#fed7d7",
"300": "#feb2b2",
"400": "#fc8181",
"500": "#f56565",
"600": "#e53e3e",
"700": "#c53030",
"800": "#9b2c2c",
"900": "#742a2a"
},
"orange": {
"100": "#fffaf0",
"200": "#feebc8",
"300": "#fbd38d",
"400": "#f6ad55",
"500": "#ed8936",
"600": "#dd6b20",
"700": "#c05621",
"800": "#9c4221",
"900": "#7b341e"
},
"yellow": {
"100": "#fffff0",
"200": "#fefcbf",
"300": "#faf089",
"400": "#f6e05e",
"500": "#ecc94b",
"600": "#d69e2e",
"700": "#b7791f",
"800": "#975a16",
"900": "#744210"
},
"green": {
"100": "#f0fff4",
"200": "#c6f6d5",
"300": "#9ae6b4",
"400": "#68d391",
"500": "#48bb78",
"600": "#38a169",
"700": "#2f855a",
"800": "#276749",
"900": "#22543d"
},
"teal": {
"100": "#e6fffa",
"200": "#b2f5ea",
"300": "#81e6d9",
"400": "#4fd1c5",
"500": "#38b2ac",
"600": "#319795",
"700": "#2c7a7b",
"800": "#285e61",
"900": "#234e52"
},
"blue": {
"100": "#ebf8ff",
"200": "#bee3f8",
"300": "#90cdf4",
"400": "#63b3ed",
"500": "#4299e1",
"600": "#3182ce",
"700": "#2b6cb0",
"800": "#2c5282",
"900": "#2a4365"
},
"indigo": {
"100": "#ebf4ff",
"200": "#c3dafe",
"300": "#a3bffa",
"400": "#7f9cf5",
"500": "#667eea",
"600": "#5a67d8",
"700": "#4c51bf",
"800": "#434190",
"900": "#3c366b"
},
"purple": {
"100": "#faf5ff",
"200": "#e9d8fd",
"300": "#d6bcfa",
"400": "#b794f4",
"500": "#9f7aea",
"600": "#805ad5",
"700": "#6b46c1",
"800": "#553c9a",
"900": "#44337a"
},
"pink": {
"100": "#fff5f7",
"200": "#fed7e2",
"300": "#fbb6ce",
"400": "#f687b3",
"500": "#ed64a6",
"600": "#d53f8c",
"700": "#b83280",
"800": "#97266d",
"900": "#702459"
}
},
"spacing": {
"px": "1px",
"0": "0",
"1": "0.25rem",
"2": "0.5rem",
"3": "0.75rem",
"4": "1rem",
"5": "1.25rem",
"6": "1.5rem",
"8": "2rem",
"10": "2.5rem",
"12": "3rem",
"16": "4rem",
"20": "5rem",
"24": "6rem",
"32": "8rem",
"40": "10rem",
"48": "12rem",
"56": "14rem",
"64": "16rem"
},
"backgroundColor": {},
"backgroundPosition": {
"bottom": "bottom",
"center": "center",
"left": "left",
"left-bottom": "left bottom",
"left-top": "left top",
"right": "right",
"right-bottom": "right bottom",
"right-top": "right top",
"top": "top"
},
"backgroundSize": {
"auto": "auto",
"cover": "cover",
"contain": "contain"
},
"borderRadius": {
"none": "0",
"sm": "0.125rem",
"default": "0.25rem",
"md": "0.375rem",
"lg": "0.5rem",
"full": "9999px"
},
"borderWidth": {
"default": "1px",
"0": "0",
"2": "2px",
"4": "4px",
"8": "8px"
},
"boxShadow": {
"xs": "0 0 0 1px rgba(0, 0, 0, 0.05)",
"sm": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
"default": "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",
"md": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
"lg": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
"xl": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.25)",
"inner": "inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)",
"outline": "0 0 0 3px rgba(66, 153, 225, 0.5)",
"none": "none"
},
"cursor": {
"auto": "auto",
"default": "default",
"pointer": "pointer",
"wait": "wait",
"text": "text",
"move": "move",
"not-allowed": "not-allowed"
},
"fill": {
"current": "currentColor"
},
"flex": {
"1": "1 1 0%",
"auto": "1 1 auto",
"initial": "0 1 auto",
"none": "none"
},
"flexGrow": {
"0": "0",
"default": "1"
},
"flexShrink": {
"0": "0",
"default": "1"
},
"fontFamily": {
"sans": "system-ui,-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,\"Helvetica Neue\",Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
"serif": "Georgia,Cambria,\"Times New Roman\",Times,serif",
"mono": "Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace"
},
"fontSize": {
"xs": "0.75rem",
"sm": "0.875rem",
"base": "1rem",
"lg": "1.125rem",
"xl": "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem"
},
"fontWeight": {
"hairline": "100",
"thin": "200",
"light": "300",
"normal": "400",
"medium": "500",
"semibold": "600",
"bold": "700",
"extrabold": "800",
"black": "900"
}
}
}
const { propertyObjectToCss } = require("./propertyObjectToCss");
const { getPropertiesArray } = require("./getPropertiesArray");

@@ -8,9 +9,3 @@ function generateScreenSpecificCss({ separator, parsedTheme, screen = null }) {

}
[
{ css: "color", source: parsedTheme.colors },
{ css: "border-color", source: parsedTheme.colors },
{ css: "background-color", source: parsedTheme.colors },
{ css: "fill", source: parsedTheme.colors },
{ css: "stroke", source: parsedTheme.colors }
].forEach(({ css, source, data }) => {
getPropertiesArray(parsedTheme).forEach(({ css, source, data }) => {
generatedCss += propertyObjectToCss({

@@ -17,0 +12,0 @@ cssProperty: css,

@@ -12,2 +12,3 @@ #!/usr/bin/env node

.command("build")
.option("--input, -i", "Theme JSON file")
.option("--output, -o", "CSS output file")

@@ -14,0 +15,0 @@ .describe(

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc