Skip to content

Commit

Permalink
fix: update based on
Browse files Browse the repository at this point in the history
PR feedback
  • Loading branch information
chosww committed Nov 8, 2024
1 parent 69fab84 commit 7827548
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 55 deletions.
1 change: 0 additions & 1 deletion eleventy.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default function eleventy(eleventyConfig) {
"src/admin/config.yml": "admin/config.yml"
});

eleventyConfig.addPassthroughCopy({ "src/assets": "assets" });
eleventyConfig.addPassthroughCopy({ "src/assets/fonts": "assets/fonts" });

return {
Expand Down
19 changes: 9 additions & 10 deletions src/assets/styles/abstracts/_variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
--font-weight-semibold: 600;
--font-weight-bold: 700;

/** Colours **/
/** Colors **/
--color-blue: hsla(194, 60%, 59%, 1);
--color-green: hsla(163, 35%, 49%, 1);
--color-yellow: hsla(42, 92%, 70%, 1);
--color-orange: hsla(25, 76%, 64%, 1);
--color-red: hsla(359, 64%, 63%, 1);
--color-white: hsla(0, 0%, 100%, 1);

--blue: hsla(194, 60%, 59%, 1);
--green: hsla(163, 35%, 49%, 1);
--yellow: hsla(42, 92%, 70%, 1);
--orange: hsla(25, 76%, 64%, 1);
--red: hsla(359, 64%, 63%, 1);
--white: hsla(0, 0%, 100%, 1);

--indigo-100: hsla(244, 100%, 98%, 1);
--indigo-200: hsla(244, 93%, 93%, 1);
--color-indigo-100: hsla(244, 100%, 98%, 1);
--color-indigo-200: hsla(244, 93%, 93%, 1);
}
Loading

0 comments on commit 7827548

Please sign in to comment.