mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
fixes https://github.com/containers/podman-desktop/issues/2380 Change-Id: Ib683ee51176d89879d6e87170e46efb5b24788ad Signed-off-by: Florent Benoit <[email protected]>
21 lines
556 B
JavaScript
21 lines
556 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
const rootTailWindConfig = require('../tailwind.config.cjs');
|
|
|
|
module.exports = {
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
// share same color palette of Podman Desktop UI
|
|
colors: rootTailWindConfig.theme.colors,
|
|
backgroundImage: {
|
|
'hero-pattern': 'url(/img/gradients.png)',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Montserrat', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
extend: {},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|