mirror of
https://github.com/thomiceli/opengist
synced 2024-11-08 12:55:50 +01:00
3e83700fc2
* Fix fork icon * Added alt images descriptions * Add avatars next to gists links * Fix avatar for nil user * Slightly different blue primary color * Reduced main width * "New" button redirects to login when not logged in
51 lines
1.0 KiB
JavaScript
Vendored
51 lines
1.0 KiB
JavaScript
Vendored
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./templates/**/*.html",
|
|
],
|
|
theme: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
white: colors.white,
|
|
black: colors.black,
|
|
gray: {
|
|
50: "#EEEFF1",
|
|
100: "#DEDFE3",
|
|
200: "#BABCC5",
|
|
300: "#999CA8",
|
|
400: "#75798A",
|
|
500: "#585B68",
|
|
600: "#464853",
|
|
700: "#363840",
|
|
800: "#232429",
|
|
900: "#131316"
|
|
},
|
|
rose: colors.rose,
|
|
primary: {
|
|
50: '#d6e1ff',
|
|
100: '#d1dfff',
|
|
200: '#b9d2fe',
|
|
300: '#84b1fb',
|
|
400: '#74a4f6',
|
|
500: '#588fee',
|
|
600: '#3c79e2',
|
|
700: '#356fc0',
|
|
800: '#2d6195',
|
|
900: '#2a5574',
|
|
950: '#173040',
|
|
},
|
|
|
|
slate: colors.slate
|
|
},
|
|
extend: {
|
|
borderWidth: {
|
|
'1': '1px',
|
|
}
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"),require('@tailwindcss/forms')],
|
|
darkMode: 'class',
|
|
}
|