Piano notes book, powered by Astro and React.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
248 B

  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
  4. theme: {
  5. fontFamily: {
  6. body: ['Times New Roman', 'Times', 'serif'],
  7. },
  8. extend: {
  9. },
  10. },
  11. plugins: [],
  12. }