mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-14 18:12:05 +00:00
Co-authored-by: MaanavD <maanavdalal@microsoft.com> Co-authored-by: Prasanth Pulavarthi <prasanth.pulavarthi@microsoft.com> Co-authored-by: Sophie Schoenmeyer <sschoenmeyer@microsoft.com> Co-authored-by: sophies927 <107952697+sophies927@users.noreply.github.com> Co-authored-by: Parinita Rahi <101819959+parinitarahi@users.noreply.github.com> Co-authored-by: kshama-msft <66488860+kshama-msft@users.noreply.github.com>
29 lines
596 B
JavaScript
29 lines
596 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,svelte,js,ts}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
darkmode: {
|
|
...require('daisyui/src/theming/themes')['[data-theme=business]'],
|
|
primary: '#0099cc',
|
|
'base-100': '#212933',
|
|
info: '#d1d1d1',
|
|
},
|
|
lightmode: {
|
|
...require('daisyui/src/theming/themes')['[data-theme=corporate]'],
|
|
primary: '#80dfff',
|
|
'base-100': '#f3f4f6',
|
|
info: '#d1d1d1',
|
|
}
|
|
}
|
|
],
|
|
base: true,
|
|
styled: true,
|
|
utils: true
|
|
}
|
|
};
|