Skip to content
Snippets Groups Projects
Commit c5341509 authored by xaralis's avatar xaralis
Browse files

Add pirate center page

parent 69264835
No related branches found
No related tags found
No related merge requests found
Pipeline #757 passed
const Color = require('color');
const alpha = (clr, val) => Color(clr).alpha(val).rgb().string();
const lighen = (clr, val) => Color(clr).lighten(val).rgb().string();
const darken = (clr, val) => Color(clr).darken(val).rgb().string();
module.exports = { module.exports = {
theme: { theme: {
extend: { extend: {
...@@ -73,11 +79,12 @@ module.exports = { ...@@ -73,11 +79,12 @@ module.exports = {
}, },
'red': { 'red': {
'100': '#d6151b', '100': '#d6151b',
'200': darken('#d6151b', 0.1),
}, },
'green': { 'green': {
'100': '#29bc51', '100': '#29bc51',
'200': '#26b34b', '200': darken('#29bc51', 0.1),
'300': '#22a244', '300': darken('#29bc51', 0.18),
}, },
'brands': { 'brands': {
'facebook': '#067ceb', 'facebook': '#067ceb',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment