mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
* chore: add 3m downloads banner to the website Signed-off-by: Sonia Sandler <[email protected]> * chore: update design Signed-off-by: Sonia Sandler <[email protected]> * chore: resize images Signed-off-by: Sonia Sandler <[email protected]> * chore: update images links and apply reviews Signed-off-by: Sonia Sandler <[email protected]> * chore: update images links and remove local images Signed-off-by: Sonia Sandler <[email protected]>
36 lines
1 KiB
JavaScript
36 lines
1 KiB
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
const rootTailWindConfig = require('../tailwind.config.cjs');
|
|
|
|
module.exports = {
|
|
content: ['./docusaurus.config.js', './src/**/*.{js,jsx,ts,tsx}'],
|
|
darkMode: 'class',
|
|
important: true,
|
|
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: {},
|
|
keyframes: {
|
|
float: {
|
|
'0%, 100%': { transform: 'translateY(0)' },
|
|
'50%': { transform: 'translateY(-10px)' },
|
|
},
|
|
'float-diagonal': {
|
|
'0%, 100%': { transform: 'translate(0,0)' },
|
|
'50%': { transform: 'translate(3px, -7px)' },
|
|
},
|
|
},
|
|
animation: {
|
|
float: 'float 3s ease-in-out infinite',
|
|
'float-diagonal': 'float-diagonal 4s ease-in-out infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|