First Commit

This commit is contained in:
Angel Infanti 2021-01-12 18:15:53 -04:00
commit c7a7078c86
5 changed files with 55 additions and 0 deletions

0
css/app.css Normal file
View File

1
css/tailwind.min.css vendored Normal file

File diff suppressed because one or more lines are too long

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ACAL Front</title>
<link href="css/tailwind.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
</head>
<body>
<script src="js/app.js"></script>
</body>
</html>

0
js/app.js Normal file
View File

41
tailwind.config.js Normal file
View File

@ -0,0 +1,41 @@
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
"azul": {
'50': '#f4f7fb',
'100': '#ecf2f8',
'200': '#dae5f1',
'300': '#b8cee5',
'400': '#8fb1d6',
'500': '#5a8dc4',
'600': '#4076b0',
'700': '#315a87',
'800': '#294b70',
'900': '#264669',
},
'ocre': {
'50': '#fff6d6',
'100': '#fff1bd',
'200': '#ffe070',
'300': '#fac400',
'400': '#d1a400',
'500': '#d6a800',
'600': '#8a6c00',
'700': '#6b5400',
'800': '#574400',
'900': '#524000',
},
},
fontFamily: {
'sans': ['Lato', '"Lucida Grande"', '"Lucida Sans Unicode"', '"Lucida Sans"', 'Verdana', 'sans-serif'],
'serif': ['"Abril Fatface"', '"Times"', '"Times New Roman"', 'serif'],
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}