Merge pull request #14 from mattdangelo/fix-tailwind-css-upgrade

Fix CSS
pull/58/head
Matt D'Angelo 3 weeks ago committed by GitHub
commit b61d09b4c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -17,23 +17,20 @@
"bitcoin": "14KvY3Pg2GKyaxGzkHAh2gNtapZeKd4jM2"
},
"colors": {
"light": {
"background": "#FBF1C9",
"foreground": "#3C3836",
"yellow": "#D79921",
"green": "#98971A",
"gray": "#7C6F64",
"blue": "#458588",
"red": "#CA2124"
},
"dark": {
"background": "#2E3440",
"foreground": "#E5E9F0",
"yellow": "#5E81AC",
"green": "#A3BE8C",
"gray": "#88C0D0",
"blue": "#EBCB8B",
"red": "#BF616A"
}
"light-background": "#FBF1C9",
"light-foreground": "#3C3836",
"light-yellow": "#D79921",
"light-green": "#98971A",
"light-gray": "#7C6F64",
"light-blue": "#458588",
"light-red": "#CA2124",
"dark-background": "#2E3440",
"dark-foreground": "#E5E9F0",
"dark-yellow": "#5E81AC",
"dark-green": "#A3BE8C",
"dark-gray": "#88C0D0",
"dark-blue": "#EBCB8B",
"dark-red": "#BF616A"
}
}

@ -1,6 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";
@config "../../tailwind.config.js";
@font-face {
font-family: 'Hack';

@ -132,7 +132,7 @@ export const sumfetch = (args?: string[]): string => {
d888 ,%888b. -----------
d88% %%%8--'-. DONATE
/88:.__ , _%-' --- - <u><a href="${config.donate_urls.paypal}" target="_blank">${config.donate_urls.paypal}</a></u>
'''::===..-' = --. ' <u><a class="text-light-blue dark:text-dark-blue underline" >${config.donate_urls.bitcoin}</a></u>
'''::===..-' = --. ' <u>${config.donate_urls.bitcoin}</u>
`;
};

@ -5,17 +5,11 @@ module.exports = {
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'media', // or 'media' or 'class'
darkMode: 'media',
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
...colors,
extend: {
colors,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};

@ -14,7 +14,7 @@
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx"

Loading…
Cancel
Save