Skip to content

Commit

Permalink
Remove config package
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Jul 11, 2024
1 parent caaed30 commit 41d4901
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 58 deletions.
50 changes: 49 additions & 1 deletion apps/app/tailwind.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@
module.exports = require("config/tailwind.config")
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}", "./layout/**/*.{html,js,svelte,ts}", , "../../packages/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
gray: {
100: "#ffffff",
200: "#d3cfcf",
500: "#282828",
600: "#1E1E1E",
700: "#141414",
800: "#0a0a0a",
900: "#000000",
},
popup: {
red: "#CC001B",
green: "#28A443",
blue: "#16A3DF",
yellow: "#F5AB00",
magenta: "#9B5094",
},
cores: {
min: "#35cbfd",
current: "#ff5380",
max: "#9d0cfd",
alternative: "#d800ef",
},
html: {
gray: "#808080",
},
},

borderRadius: {
xl: "15px",
"2xl": "30px",
},

screens: {
sm: { max: "1200px" },
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
}
50 changes: 49 additions & 1 deletion apps/web/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@
module.exports = require("config/tailwind.config")
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}", "./layout/**/*.{html,js,svelte,ts}", , "../../packages/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
gray: {
100: "#ffffff",
200: "#d3cfcf",
500: "#282828",
600: "#1E1E1E",
700: "#141414",
800: "#0a0a0a",
900: "#000000",
},
popup: {
red: "#CC001B",
green: "#28A443",
blue: "#16A3DF",
yellow: "#F5AB00",
magenta: "#9B5094",
},
cores: {
min: "#35cbfd",
current: "#ff5380",
max: "#9d0cfd",
alternative: "#d800ef",
},
html: {
gray: "#808080",
},
},

borderRadius: {
xl: "15px",
"2xl": "30px",
},

screens: {
sm: { max: "1200px" },
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
}
6 changes: 0 additions & 6 deletions packages/config/package.json

This file was deleted.

49 changes: 0 additions & 49 deletions packages/config/tailwind.config.js

This file was deleted.

50 changes: 49 additions & 1 deletion packages/ui/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@
module.exports = require("config/tailwind.config")
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}", "./layout/**/*.{html,js,svelte,ts}", , "../../packages/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
gray: {
100: "#ffffff",
200: "#d3cfcf",
500: "#282828",
600: "#1E1E1E",
700: "#141414",
800: "#0a0a0a",
900: "#000000",
},
popup: {
red: "#CC001B",
green: "#28A443",
blue: "#16A3DF",
yellow: "#F5AB00",
magenta: "#9B5094",
},
cores: {
min: "#35cbfd",
current: "#ff5380",
max: "#9d0cfd",
alternative: "#d800ef",
},
html: {
gray: "#808080",
},
},

borderRadius: {
xl: "15px",
"2xl": "30px",
},

screens: {
sm: { max: "1200px" },
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
}

0 comments on commit 41d4901

Please sign in to comment.