25 lines
599 B
JavaScript
25 lines
599 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"default-blue": "#2a529c",
|
|
"default-yellow": "#ffcc2a",
|
|
"blue-103": "#173367",
|
|
"blue-112": "#1F3B70",
|
|
"blue-135": "#254787",
|
|
primary: "#ffcc2a",
|
|
second: "#173367",
|
|
"yellow-254": "#fef6de",
|
|
critical: "#c81e1e",
|
|
warning: "#FCC000",
|
|
normal: "#0E9F6E",
|
|
no_data: "#E3A008",
|
|
no_evaluation: "#E3A008",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|