Skip to content

Commit 526e406

Browse files
committed
Add MUTCD colors
1 parent 1469298 commit 526e406

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

src/routes/+layout.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
<!--Content pane hidden message-->
175175
<div class="p-4 rounded-xl bg-base-100 absolute ml-4 z-10 mt-4 w-64 shadow-2xl"
176176
transition:fly={{x: -1000, opacity:1}}>
177-
<p class="text-2xl font-display font-extrabold text-green-800">
177+
<p class="text-2xl font-display font-extrabold text-mutcd-green">
178178
ISCMM
179179
</p>
180180
<p>

tailwind.config.js

+18-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
/** @type {import('tailwindcss').Config} */
22
export default {
3-
content: ["./src/**/*.{svelte,html,js,ts}"],
4-
theme: {
5-
fontFamily: {
6-
sans: ["IBM Plex Sans", "sans-serif"],
7-
display: ["Overpass", "ui-sans-serif"]
3+
content: ["./src/**/*.{svelte,html,js,ts}"],
4+
theme: {
5+
fontFamily: {
6+
sans: ["IBM Plex Sans", "sans-serif"],
7+
display: ["Overpass", "ui-sans-serif"]
8+
},
9+
extend: {
10+
colors: {
11+
'mutcd-black': "#000000",
12+
'mutcd-white': "#ffffff",
13+
'mutcd-green': "#006b54",
14+
'mutcd-blue': "#003f87",
15+
'mutcd-yellow': "#fcd116",
16+
'mutcd-red': "#af1e2d",
17+
'mutcd-orange': "#dd7500",
18+
}
19+
},
820
},
9-
extend: {},
10-
},
11-
plugins: [require("daisyui")],
21+
plugins: [require("daisyui")],
1222
}
1323

0 commit comments

Comments
 (0)