JS
joshua saez
Styled Paper - Copy this React, Mui Component to your project
// src/theme.js import { createTheme } from '@mui/material/styles'; const theme = createTheme({ palette: { primary: { main: '#FF6F61', // Vibrant coral }, secondary: { main: '#FFA726', // Bright orange }, background: { default: '#FFF8E1', // Light cream paper: '#FFFFFF', }, text: { primary: '#212121', secondary: '#757575', }, }, typography: { fontFamily: 'Arial, sans-serif', }, }); export default theme;
Prompt
