Skip to content

Commit

Permalink
style: Define design colors on tailwind config.
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrusMaximus0 committed Dec 18, 2024
1 parent 964c439 commit 1fee57e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
extend: {
colors: {
primary: "#1B2930",
neutral: "#11191D",
complementary: "#FFFFFF",
accent: "#F07828",
logoText: "#FF003B",
ctaBgA: "#F3FF50",
ctaBgB: "#F59814"
}
},
},
plugins: [],
};

0 comments on commit 1fee57e

Please sign in to comment.