source: chapterx-frontend/tailwind.config.js@ b62cefc

main
Last change on this file since b62cefc was b62cefc, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added frontend and imporoved AI Suggestions service

  • Property mode set to 100644
File size: 373 bytes
Line 
1/** @type {import('tailwindcss').Config} */
2export default {
3 content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
4 theme: {
5 extend: {
6 fontFamily: {
7 serif: ['Playfair Display', 'Georgia', 'serif'],
8 sans: ['Inter', 'system-ui', 'sans-serif'],
9 },
10 colors: {
11 indigo: { 950: '#1e1b4b' },
12 },
13 },
14 },
15 plugins: [],
16}
Note: See TracBrowser for help on using the repository browser.