Files
golink/tailwind.config.js
T
Will Norris abf84df32e cmd/golink: provide user documentation
Add a new /.help URL which contains a first pass at user docs, covering
naming rules for short links, using go templates, and basic API access.
Also add client side validation for short name and a link to help page.

Change-Id: I4b66793248eba17e567c4f422ee197617f74ee24
2022-06-21 09:25:14 -07:00

50 lines
1018 B
JavaScript

module.exports = {
content: ["./tmpl/*.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',
},
extend: {
typography: {
DEFAULT: {
css: {
'code::before': {
'content': '',
},
'code::after': {
'content': '',
},
},
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}