Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/tailwind.config.js

53 lines
1.2 KiB

const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./assets/**/*.{js,vue}',
'./public/main/**/*.php',
'./src/CoreBudnle/Resources/views/**/*.html.twig',
],
theme: {
colors: {
'primary': '#2e75a3',
'secondary': '#fd6600',
'gray': {
5: '#fcfcfc',
10: '#fafafa',
15: '#f7f8f9',
20: '#edf0f2',
25: '#e4e9ed',
30: 'rgba(0, 0, 0, 0.12)',
50: '#a2a6b0',
90: '#333333',
},
'support': {
1: 'rgba(46, 117, 163, 0.08)',
2: '#f5f8fa',
3: 'rgba(46, 117, 163, 0.5)',
4: '#244d67',
5: '#e06410',
6: '#faf7f5',
},
'warning': '#f5ce01',
'success': '#77aa0c',
'error': '#df3b3b',
'info': '#0d7bfd',
'white': colors.white,
'black': colors.black,
'transparent': colors.transparent,
'current': colors.current,
},
extend: {
fontFamily: {
sans: ['Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif']
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/forms'),
require("@tailwindcss/typography")
],
}