mirror of
https://github.com/immich-app/immich.git
synced 2026-06-05 21:02:58 +08:00
* 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]>
28 lines
781 B
JavaScript
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: [],
|
|
};
|