const colors = require("tailwindcss/colors"); function withOpacity(variableName) { return ({ opacityValue }) => { if (opacityValue !== undefined) { return `rgba(var(${variableName}), ${opacityValue})`; } return `rgb(var(${variableName}))`; }; } /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{js,jsx,ts,tsx}", "./index.html"], theme: { extend: { colors: { "link-blue": "#3498db", "link-blue-hover": "#0468ab", }, fontFamily: { sans: ["Roboto"], title: ["Space Grotesk"], address: ["Roboto Mono"], hash: ["Roboto Mono"], data: ["Roboto Mono"], balance: ["Fira Code"], blocknum: ["Roboto"], code: ["Fira Code"], }, borderColor: { skin: { from: withOpacity("--color-from-border"), }, }, textColor: { skin: { button: withOpacity("--color-button-text"), from: withOpacity("--color-from-text"), }, }, backgroundColor: { skin: { "button-fill": withOpacity("--color-button-fill"), "button-hover-fill": withOpacity("--color-button-hover-fill"), from: withOpacity("--color-from-fill"), to: withOpacity("--color-to-fill"), "table-hover": withOpacity("--color-table-row-hover"), }, }, }, }, plugins: [], };