generated from Klectr/KTemplate
Triston Armstrong
1071743290
The image insert will throw a dom exception if the image size exceeds the alotted storage provided by local storage. This just lets the user know somethng fufuckedd up and atleast removeds the image after inserting (inknow, dont tell me) This iwill be solved in the future with IDB
16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
info: "#4f46e5",
|
|
success: "#267d46",
|
|
warning: "#a46319",
|
|
error: "#963030",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|