Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@docusaurus/theme-common
Advanced tools
@docusaurus/theme-common is a package that provides common utilities and components for building themes in Docusaurus, a popular static site generator. It includes shared components, hooks, and utilities that can be used to create custom themes or extend existing ones.
useThemeConfig
The `useThemeConfig` hook allows you to access the theme configuration in your components. This is useful for customizing the appearance and behavior of your site based on the theme settings.
import { useThemeConfig } from '@docusaurus/theme-common';
const MyComponent = () => {
const themeConfig = useThemeConfig();
return <div>{JSON.stringify(themeConfig)}</div>;
};
useColorMode
The `useColorMode` hook provides access to the current color mode (light or dark) and a function to toggle it. This is useful for implementing dark mode support in your custom themes.
import { useColorMode } from '@docusaurus/theme-common';
const MyComponent = () => {
const { colorMode, setColorMode } = useColorMode();
return (
<div>
<p>Current color mode: {colorMode}</p>
<button onClick={() => setColorMode(colorMode === 'dark' ? 'light' : 'dark')}>Toggle Color Mode</button>
</div>
);
};
useWindowSize
The `useWindowSize` hook provides the current window size, which can be useful for responsive design and adapting your components based on the viewport dimensions.
import { useWindowSize } from '@docusaurus/theme-common';
const MyComponent = () => {
const windowSize = useWindowSize();
return <div>Window size: {windowSize.width} x {windowSize.height}</div>;
};
Gatsby themes allow you to share functionality across multiple Gatsby sites. Similar to @docusaurus/theme-common, Gatsby themes provide a way to encapsulate and reuse common components, hooks, and utilities. However, Gatsby themes are specific to the Gatsby ecosystem.
next-themes is a library for managing themes in Next.js applications. It provides similar functionality to @docusaurus/theme-common, such as theme configuration and color mode management, but is designed specifically for Next.js.
styled-components is a popular library for styling React applications using tagged template literals. While it doesn't provide theme-specific utilities like @docusaurus/theme-common, it offers powerful theming capabilities through its ThemeProvider component.
@docusaurus/theme-common
Common code for Docusaurus themes.
FAQs
Common code for Docusaurus themes.
The npm package @docusaurus/theme-common receives a total of 257,812 weekly downloads. As such, @docusaurus/theme-common popularity was classified as popular.
We found that @docusaurus/theme-common demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.