1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-28 11:02:02 +03:00

Frontend overhaul based on Tailwind CSS

This commit is contained in:
Quentin Gliech
2021-12-13 16:55:08 +01:00
parent 7e0bfc9eb4
commit 18bcc3dfa8
12 changed files with 313 additions and 641 deletions

View File

@ -14,13 +14,33 @@
module.exports = {
mode: "jit",
purge: ["../templates/src/res/*.html"],
darkMode: false,
content: ["../templates/src/res/**/*.html"],
theme: {
extend: {},
extend: {
colors: {
accent: '#0DBD8B',
alert: '#FF5B55',
links: '#0086E6',
'grey-25': '#F4F6FA',
'grey-50': '#E3E8F0',
'grey-100': '#C1C6CD',
'grey-150': '#8D97A5',
'grey-200': '#737D8C',
'grey-250': '#A9B2BC',
'grey-300': '#8E99A4',
'grey-400': '#6F7882',
'grey-450': '#394049',
'black-800': '#15191E',
'black-900': '#17191C',
'black-950': '#21262C',
'ice': '#F4F9FD',
},
},
},
variants: {
extend: {},
},
plugins: [],
plugins: [
require('@tailwindcss/forms'),
],
}