73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('tailwindcss').Config} */
 | |
| module.exports = {
 | |
|   content: ["./objects/wwws/pwa/src/**/*.{html,js,mustache}"],
 | |
|   theme: {
 | |
|     fontFamily: {
 | |
|       sans: ["Inter", "sans-serif"],
 | |
|       serif: ["Monserrat", "serif"],
 | |
|     },
 | |
|   },
 | |
|   plugins: [
 | |
|     require("@tailwindcss/typography"),
 | |
|     require("daisyui")
 | |
|   ],
 | |
|   daisyui: {
 | |
|     themes: ["dark","light","candidate","recruiter"], // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
 | |
|     darkTheme: "dark", // name of one of the included themes for dark mode
 | |
|     base: true, // applies background color and foreground color for root element by default
 | |
|     styled: true, // include daisyUI colors and design decisions for all components
 | |
|     utils: true, // adds responsive and modifier utility classes
 | |
|     prefix: "", // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
 | |
|     logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
 | |
|     themeRoot: ":root", // The element that receives theme color CSS variables
 | |
|     themes: [
 | |
|       { //check https://daisyui.com/theme-generator/ to customize
 | |
|         candidate: {
 | |
|           primary: "#00FFC2",
 | |
|           "primary-content": "#18191E",
 | |
|           secondary: "#0DC3FF",
 | |
|           "secondary-content": "#18191E",
 | |
|           accent: "#FF470d",
 | |
|           "accent-content": "#fcfcfc",
 | |
|           neutral: "#fcfcfc",
 | |
|           "neutral-content": "#18191E",
 | |
|           "base-100": "#1E2024",
 | |
|           "base-200": "#292F38",
 | |
|           "base-300": "#344054",
 | |
|           "base-content": "#cdd0d3",
 | |
|           info: "#A1FFE9",
 | |
|           "info-content": "#18191E",
 | |
|           success: "#B5E7FF",
 | |
|           "success-content": "#18191E",
 | |
|           warning: "#ff9457",
 | |
|           "warning-content": "#18191E",
 | |
|           error: "#d92d20",
 | |
|           "error-content": "#fcfcfc",
 | |
|          },
 | |
|         recruiter: {
 | |
|           primary: "#FA4A64",
 | |
|           "primary-content": "#18191E",
 | |
|           secondary: "#EF6E68",
 | |
|           "secondary-content": "#18191E",
 | |
|           accent: "#FF9457",
 | |
|           "accent-content": "#fcfcfc",
 | |
|           neutral: "#fcfcfc",
 | |
|           "neutral-content": "#18191E",
 | |
|           "base-100": "#1E2024",
 | |
|           "base-200": "#292F38",
 | |
|           "base-300": "#344054",
 | |
|           "base-content": "#cdd0d3",
 | |
|           info: "#A1FFE9",
 | |
|           "info-content": "#18191E",
 | |
|           success: "#B5E7FF",
 | |
|           "success-content": "#18191E",
 | |
|           warning: "#ff9457",
 | |
|           "warning-content": "#18191E",
 | |
|           error: "#d92d20",
 | |
|           "error-content": "#fcfcfc",
 | |
|         },
 | |
|       },
 | |
|     ],
 | |
|   },
 | |
| };
 |