73fc67955d
* Add components for CPM landing and charity pages * Remove misc.ts to fix build * Set up cloud function for writing txns * More plumbing for txns * Fix up API call * Use Date.now() to keep timestamps simple * Some styles for charity list page * Hard code charities data * Pass charity data to charity page * Update txn type * Listen for charity txns * Handle txn to non-user by burning it * Read txns for charity card and charity page. * Set images to object contain * Clean up txn types * Move pic to top of card. Other misc styling. * Update charity short & long descriptions * Add `token` and `category` to Txn * Fix breakages * Show Charity link in the sidebar * Fix typing issues * Fix not reading from the right type * Switch out icon * Also show Charity icon on mobile * Update copy Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: James Grugett <jahooma@gmail.com>
67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
fontFamily: Object.assign(
|
|
{ ...defaultTheme.fontFamily },
|
|
{
|
|
'major-mono': ['Major Mono Display', 'monospace'],
|
|
'readex-pro': ['Readex Pro', 'sans-serif'],
|
|
}
|
|
),
|
|
extend: {
|
|
backgroundImage: {
|
|
'world-trading': "url('/world-trading-background.webp')",
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/line-clamp'),
|
|
require('daisyui'),
|
|
],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
mantic: {
|
|
primary: '#11b981',
|
|
'primary-focus': '#069668',
|
|
// Foreground content color to use on primary color
|
|
'primary-content': '#ffffff',
|
|
|
|
secondary: '#a991f7',
|
|
'secondary-focus': '#8462f4',
|
|
// Foreground content color to use on secondary color
|
|
'secondary-content': '#ffffff',
|
|
|
|
accent: '#f6d860',
|
|
'accent-focus': '#f3cc30',
|
|
// Foreground content color to use on accent color
|
|
'accent-content': '#ffffff',
|
|
|
|
neutral: '#3d4451',
|
|
'neutral-focus': '#2a2e37',
|
|
// Foreground content color to use on neutral color
|
|
'neutral-content': '#ffffff',
|
|
|
|
'base-100': '#ffffff' /* Base page color, for blank backgrounds */,
|
|
'base-200': '#f9fafb' /* Base color, a little darker */,
|
|
'base-300': '#d1d5db' /* Base color, even more dark */,
|
|
// Foreground content color to use on base color
|
|
'base-content': '#1f2937',
|
|
|
|
info: '#2094f3',
|
|
success: '#009485',
|
|
warning: '#ff9900',
|
|
error: '#ff5724',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|