immich/docs/tailwind.config.js
Alex a244d94ac8
docs: update documentation (#25440)
* docs: beginning of the year tune up and updates

* darker dark

* backup information

* promote to table of content

* Apply suggestions from code review

Co-authored-by: Mert <[email protected]>
Co-authored-by: Mees Frensel <[email protected]>

* restore and backup

* edit

* Apply suggestions from code review

Co-authored-by: bo0tzz <[email protected]>

* feedback

* more information on mobile

Co-authored-by: https://github.com/aviv926

* more information on free up space
>
> Co-authored-by: jtagcat <[email protected]>

* Update docs/docs/features/mobile-app.mdx

Co-authored-by: jtagcat <[email protected]>

* screenshot and minor tweaks

---------

Co-authored-by: Mert <[email protected]>
Co-authored-by: Mees Frensel <[email protected]>
Co-authored-by: bo0tzz <[email protected]>
Co-authored-by: jtagcat <[email protected]>
2026-01-25 15:45:30 +00:00

28 lines
781 B
JavaScript

// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false, // disable Tailwind's reset
},
content: ['./src/**/*.{js,jsx,ts,tsx}', './{docs,blog}/**/*.{md,mdx}'], // my markdown stuff is in ../docs, not /src
darkMode: ['class', '[data-theme="dark"]'], // hooks into docusaurus' dark mode settings
theme: {
extend: {
colors: {
// Light Theme
'immich-primary': '#4250af',
'immich-bg': '#f9f8fb',
'immich-fg': 'black',
'immich-gray': '#F6F6F4',
// Dark Theme
'immich-dark-primary': '#adcbfa',
'immich-dark-bg': '#000000',
'immich-dark-fg': '#e5e7eb',
'immich-dark-gray': '#111111',
},
},
},
plugins: [],
};