vanikam/web_ui/templates/tailwind_config.html

26 lines
410 B
HTML
Raw Normal View History

2025-01-10 15:51:27 +05:30
<style>
* {
margin: 0;
padding: 9;
}
</style>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
darkest: "#171717",
dark: "#414141",
medium: "#808080",
light: "#e0e0e0",
lightest: "#f5f5f5",
white: "#fff",
primary: "#cc3229",
backdrop: "#e8e9ea",
},
},
},
};
</script>