2023-03-08 21:22:39 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-04-02 16:24:06 +02:00
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
2023-06-04 18:23:39 +02:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
primary: '#005db5',
|
|
|
|
dark_primary: '#a8c8ff',
|
|
|
|
on_primary: '#ffffff',
|
|
|
|
dark_on_primary: '#003062',
|
|
|
|
surface: '#fdfbff',
|
|
|
|
dark_surface: '#1a1b1e',
|
|
|
|
on_surface: '#1a1b1e',
|
|
|
|
dark_on_surface: '#e3e2e6'
|
|
|
|
}
|
|
|
|
},
|
2023-04-02 16:24:06 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
2023-03-08 21:22:39 +01:00
|
|
|
}
|
2023-04-02 16:24:06 +02:00
|
|
|
|
2023-06-04 18:23:39 +02:00
|
|
|
// #005eb6
|
|
|
|
// https://m3.material.io/theme-builder#/custom
|