
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@hdoc/react-toggle-theme
Advanced tools
Simple button component for toggle between light and dark theme in your React app.
npm install @hdoc/react-toggle-theme
First, import load-theme.js in your index.html:
<script
type="module"
src="/path/to/@hdoc/react-toggle-theme/dist/load-theme.js"
></script>
Then, in your App.jsx or another file:
import { ThemeButton } from "@hdoc/react-toggle-theme";
function App() {
return (
<>
...
<ThemeButton
lightElement={<span>Light</span>}
darkElement={<span>Dark</span>}
fullRounded
/>
</>
);
}
Finally, you will need to add your styles manually:
/* For light theme: */
[data-theme="light"] { ... }
[data-theme="light"] .my-class { ... }
/* For dark theme: */
[data-theme="dark"] { ... }
[data-theme="dark"] .my-class { ... }
lightElement
Element to render when the theme is light.
Type: ReactNode
darkElement
Element to render when the theme is dark.
Type: ReactNode
fullRounded
Whether to render the button with rounded corners as a circle.
Type: boolean
theme-button
Default class name
theme-button--full-rounded
Styles the button as a circle when fullRounded=true
You can customize the background color of the button with the following CSS custom properties:
.theme-button {
--button-bg: #fff;
--button-bg-hover: #eee;
--button-bg-active: #ddd;
}
/* The same custom properties applies for dark theme. */
[data-theme="dark"] .theme-button {
--button-bg: #333;
--button-bg-hover: #444;
--button-bg-active: #555;
}
FAQs
A react button component for toggle the theme
We found that @hdoc/react-toggle-theme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.