Added Frontend
This commit is contained in:
28
frontend/tailwind.config.ts
Normal file
28
frontend/tailwind.config.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import type {Config} from 'tailwindcss'
|
||||
import defaultTheme from 'tailwindcss/defaultTheme'
|
||||
|
||||
export default <Partial<Config>>{
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
green: {
|
||||
50: "#f4fbf2",
|
||||
100: "#E7F7E1",
|
||||
200: "#cdeec4",
|
||||
300: "#a6e095",
|
||||
400: "#69c350",
|
||||
500: "#53ad3a",
|
||||
600: "#418e2b",
|
||||
700: "#357025",
|
||||
800: "#2d5922",
|
||||
900: "#254a1d",
|
||||
950: "#10280b"
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
require('tailwindcss-safe-area-capacitor'),
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user