feat(page-controller): refine dark mode detection heuristics

This commit is contained in:
Simon
2026-06-09 20:33:14 +08:00
parent b3ff0a1a25
commit 01c9cc9ea7

View File

@@ -1,6 +1,25 @@
/**
* A comprehensive function to determine if the page is currently in a dark theme.
* Heuristic check. Only work for common patterns. Return false by default.
*/
export function isPageDark() {
try {
if (hasDarkModeClass()) return true
if (hasDarkModeDataAttribute()) return true
if (isColorSchemeDark()) return true
if (isBackgroundDark()) return true
if (isMainContentBackgroundDark()) return true
if (isTextColorLight()) return true
return false
} catch (error) {
console.warn('Error determining if page is dark:', error)
return false
}
}
/** /**
* Checks for common dark mode CSS classes on the html or body elements. * Checks for common dark mode CSS classes on the html or body elements.
* @returns {boolean} - True if a common dark mode class is found.
*/ */
function hasDarkModeClass() { function hasDarkModeClass() {
const DEFAULT_DARK_MODE_CLASSES = ['dark', 'dark-mode', 'theme-dark', 'night', 'night-mode'] const DEFAULT_DARK_MODE_CLASSES = ['dark', 'dark-mode', 'theme-dark', 'night', 'night-mode']
@@ -15,13 +34,22 @@ function hasDarkModeClass() {
} }
} }
// Some sites use data attributes (data-theme, data-color-mode, data-bs-theme, etc.) return false
const dataAttrs = ['data-theme', 'data-color-mode', 'data-bs-theme', 'data-color-scheme'] }
/**
* Some UI frameworks use data attributes to indicate theme
*/
function hasDarkModeDataAttribute() {
const htmlElement = document.documentElement
const bodyElement = document.body || document.documentElement // can be null in some cases
const dataAttrs = ['data-theme', 'data-color-mode', 'data-bs-theme', 'data-mui-color-scheme']
for (const attr of dataAttrs) { for (const attr of dataAttrs) {
const bodyValue = bodyElement?.getAttribute(attr) const bodyValue = bodyElement?.getAttribute(attr)
const htmlValue = htmlElement.getAttribute(attr) const htmlValue = htmlElement.getAttribute(attr)
if (bodyValue?.toLowerCase().includes('dark') || htmlValue?.toLowerCase().includes('dark')) { if (bodyValue?.toLowerCase() === 'dark' || htmlValue?.toLowerCase() === 'dark') {
return true return true
} }
} }
@@ -30,47 +58,23 @@ function hasDarkModeClass() {
} }
/** /**
* Parses an RGB or RGBA color string and returns an object with r, g, b properties. * Checks the CSS `color-scheme` property and `<meta name="color-scheme">` tag.
* @param {string} colorString - e.g., "rgb(34, 34, 34)" or "rgba(0, 0, 0, 0.5)" * Only "dark"/"only dark" counts as dark; "light dark" is ambiguous and ignored.
* @returns {{r: number, g: number, b: number}|null}
*/ */
function parseRgbColor(colorString: string) { function isColorSchemeDark() {
const rgbMatch = /rgba?\((\d+),\s*(\d+),\s*(\d+)/.exec(colorString) // Check <meta name="color-scheme" content="dark">
if (!rgbMatch) { const meta = document.querySelector<HTMLMetaElement>('meta[name="color-scheme"]')
return null // Not a valid rgb/rgba string const metaContent = meta?.content.toLowerCase()
} if (metaContent === 'dark' || metaContent === 'only dark') return true
return {
r: parseInt(rgbMatch[1]),
g: parseInt(rgbMatch[2]),
b: parseInt(rgbMatch[3]),
}
}
/** // Check the computed color-scheme CSS property on :root
* Determines if a color is "dark" based on its calculated luminance. const rootStyle = window.getComputedStyle(document.documentElement)
* @param {string} colorString - The CSS color string (e.g., "rgb(50, 50, 50)"). const colorScheme = rootStyle.getPropertyValue('color-scheme').trim().toLowerCase()
* @param {number} threshold - A value between 0 and 255. Colors with luminance below this will be considered dark. Default is 128. return colorScheme === 'dark' || colorScheme === 'only dark'
* @returns {boolean} - True if the color is considered dark.
*/
function isColorDark(colorString: string, threshold = 128) {
if (!colorString || colorString === 'transparent' || colorString.startsWith('rgba(0, 0, 0, 0)')) {
return false // Transparent is not dark
}
const rgb = parseRgbColor(colorString)
if (!rgb) {
return false // Could not parse color
}
// Calculate perceived luminance using the standard formula
const luminance = 0.299 * rgb.r + 0.587 * rgb.g + 0.114 * rgb.b
return luminance < threshold
} }
/** /**
* Checks the background color of the body element to determine if the page is dark. * Checks the background color of the body element to determine if the page is dark.
* @returns {boolean}
*/ */
function isBackgroundDark() { function isBackgroundDark() {
// We check both <html> and <body> because some pages set the color on <html> // We check both <html> and <body> because some pages set the color on <html>
@@ -92,56 +96,30 @@ function isBackgroundDark() {
return false return false
} }
/**
* Checks the CSS `color-scheme` property and `<meta name="color-scheme">` tag.
* @returns {boolean | null} - True/false if deterministic, null if inconclusive.
*/
function getColorSchemePreference(): boolean | null {
// Check <meta name="color-scheme" content="dark">
const meta = document.querySelector<HTMLMetaElement>('meta[name="color-scheme"]')
if (meta) {
const content = meta.content.toLowerCase()
// "dark" or "only dark" → dark; "light dark" is ambiguous so skip
if (content === 'dark' || content === 'only dark') return true
if (content === 'light' || content === 'only light') return false
}
// Check the computed color-scheme CSS property on :root
const rootStyle = window.getComputedStyle(document.documentElement)
const colorScheme = rootStyle.getPropertyValue('color-scheme').trim().toLowerCase()
if (colorScheme === 'dark' || colorScheme === 'only dark') return true
if (colorScheme === 'light' || colorScheme === 'only light') return false
return null
}
/** /**
* Checks if the text color on the body is light, which implies a dark background. * Checks if the text color on the body is light, which implies a dark background.
* @returns {boolean}
*/ */
function isTextColorLight() { function isTextColorLight() {
const bodyStyle = window.getComputedStyle(document.body || document.documentElement) /** Luminance (0-255) above which body text is considered light */
const textColor = bodyStyle.color const LIGHT_TEXT_LUMINANCE = 200
const rgb = parseRgbColor(textColor) const bodyStyle = window.getComputedStyle(document.body || document.documentElement)
if (!rgb) return false const luminance = getLuminance(bodyStyle.color)
// Light text has high luminance (e.g. white text on dark bg) // Light text has high luminance (e.g. white text on dark bg)
const luminance = 0.299 * rgb.r + 0.587 * rgb.g + 0.114 * rgb.b return luminance !== null && luminance > LIGHT_TEXT_LUMINANCE
return luminance > 180
} }
/** /**
* Checks the background color of major layout elements (<main>, #app, #root, etc.). * Checks the background color of major layout elements (#app, #root, etc.).
* Many SPAs render into a container that may have its own dark background while * Many SPAs render into a container that may have its own dark background while
* <body> remains transparent. * <body> remains transparent.
* @returns {boolean}
*/ */
function isMainContentDark() { function isMainContentBackgroundDark() {
const { innerWidth: vw, innerHeight: vh } = window const { innerWidth: vw, innerHeight: vh } = window
const minArea = vw * vh * 0.5 const minArea = vw * vh * 0.5
const selectors = ['main', '#app', '#root', '#__next', '[role="main"]'] const selectors = ['#app', '#root', '#__next']
for (const selector of selectors) { for (const selector of selectors) {
const el = document.querySelector(selector) const el = document.querySelector(selector)
if (!el) continue if (!el) continue
@@ -154,42 +132,50 @@ function isMainContentDark() {
return false return false
} }
// --- utils ---
/** /**
* A comprehensive function to determine if the page is currently in a dark theme. * Parses an RGB or RGBA color string and returns an object with r, g, b properties.
* It combines class checking and background color analysis. * @param {string} colorString - e.g., "rgb(34, 34, 34)" or "rgba(0, 0, 0, 0.5)"
* @returns {boolean} - True if the page is likely dark. * @returns {{r: number, g: number, b: number}|null}
*/ */
export function isPageDark() { function parseRgbColor(colorString: string) {
try { const rgbMatch = /rgba?\((\d+),\s*(\d+),\s*(\d+)/.exec(colorString)
// Strategy 1: Check for common dark mode classes and data attributes if (!rgbMatch) {
if (hasDarkModeClass()) { return null // Not a valid rgb/rgba string
return true }
return {
r: parseInt(rgbMatch[1]),
g: parseInt(rgbMatch[2]),
b: parseInt(rgbMatch[3]),
}
} }
// Strategy 2: Check CSS color-scheme property and meta tag /**
const colorScheme = getColorSchemePreference() * Calculates the perceived luminance (0-255) of a CSS color string.
if (colorScheme !== null) { * @param {string} colorString - e.g., "rgb(50, 50, 50)" or "rgba(0, 0, 0, 0.5)"
return colorScheme * @returns {number|null} - The luminance, or null if the color is transparent or unparseable.
*/
function getLuminance(colorString: string): number | null {
if (!colorString || colorString === 'transparent' || colorString.startsWith('rgba(0, 0, 0, 0)')) {
return null // Transparent has no meaningful luminance
} }
// Strategy 3: Analyze the computed background color of <html>/<body> const rgb = parseRgbColor(colorString)
if (isBackgroundDark()) { if (!rgb) {
return true return null // Could not parse color
} }
// Strategy 4: Check background of major layout containers (<main>, #app, etc.) // Standard perceived luminance formula
if (isMainContentDark()) { return 0.299 * rgb.r + 0.587 * rgb.g + 0.114 * rgb.b
return true
} }
// Strategy 5: Check if text color is light (implies dark background) /**
if (isTextColorLight()) { * Determines if a color is "dark" based on its calculated luminance.
return true * @param {string} colorString - The CSS color string (e.g., "rgb(50, 50, 50)").
} * @param {number} threshold - A value between 0 and 255. Colors with luminance below this will be considered dark. Default is 128.
*/
return false function isColorDark(colorString: string, threshold = 128) {
} catch (error) { const luminance = getLuminance(colorString)
console.warn('Error determining if page is dark:', error) return luminance !== null && luminance < threshold
return false
}
} }