mirror of
https://github.com/wahyd4/golink.git
synced 2026-08-09 05:05:56 +10:00
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
50 lines
1018 B
JavaScript
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'),
|
|
],
|
|
}
|