Files
golink/tailwind.config.js
T
Will Norris 5f349bb6d2 cmd/golink: add styling using tailwind
Change-Id: I301e1d6a9b38de3762c1e9e92c1fff6ccd873afd
2022-06-08 09:16:45 -07:00

35 lines
716 B
JavaScript

module.exports = {
content: ["./*.html"],
theme: {
colors: {
blue: {
50: "rgba(228, 233, 240, 0.15)",
100: "rgba(220, 233, 242, 0.6)",
200: "rgba(43, 123, 185, 0.15)",
300: "#80bdff",
500: "#4a7ddd",
600: "#4D78C8",
700: "#496495",
800: "#2A4067",
},
gray: {
50: "#faf9f8",
100: "#f6f4f2",
200: "#E6E4E2",
300: "#D6D2CC",
400: "#B6B0AD",
500: "#9F9995",
600: "#666361",
700: "#474645",
800: "#343433",
900: "#242424",
},
white: '#fff',
current: 'currentColor',
},
},
plugins: [
require('@tailwindcss/forms'),
],
}