Styling
Learn how to customize your widget’s appearance and content.
Overview
Pointer’s UI is fully customizable through the PointerProvider
and PointerFlowProvider
components. You can customize the theme colors, branding elements, and content to match your application’s design system.
For the PointerProvider
:
For the PointerFlowProvider
:
For both providers (steps):
Theme customization
Customize the visual appearance of the widget by configuring colors and styling. You can provide either a single color value or an object with light
and dark
values for dark mode support:
Basic color configuration
Dark mode support
For applications that support dark mode, you can provide different colors for light and dark modes:
The widget will automatically use the appropriate colors based on the user’s system preferences or your application’s theme setting.
Branding
Customize branding elements to match your company’s identity:
Basic branding
Dark mode support for branding
For applications that support dark mode, you can provide different values for light and dark modes:
The logomark
prop can be either a string path to your logo or an object with light
and dark
properties for different themes.
The triggerIcon
can be one of: 'sparkles'
, 'help'
, 'message'
, 'zap'
, or 'pointer'
.
Content
Customize the widget’s text content and messaging:
Link buttons
Customize up to four link buttons that appear at the top of the widget. These buttons can be used to direct users to important resources like documentation, community, or contact information:
Each link button is optional and has three customizable properties:
text
: The button’s labelicon
: A Lucide icon name (e.g., ‘users’, ‘book’, ‘mail’, ‘github’)url
: The URL to open when clicked
If not provided, the buttons will use default values pointing to Pointer’s resources.
Complete example
Here’s a complete example showing all customization options with dark mode support:
All customization properties are optional. If not provided, Pointer will use its default theme and content settings.
Debugging styling issues
If you’re experiencing issues with the styling not being applied correctly, here are some steps to troubleshoot:
1. Check prop values and types
Ensure your color values are valid CSS colors. The component accepts Hex codes (e.g., "#ffffff"
).
2. Verify dark mode configuration
If you’re using dark mode, ensure your theme object has both light
and dark
properties:
3. Check component hierarchy
Make sure the PointerProvider
is:
- Mounted in your component tree
- Wrapping the components you want to style
- Not nested inside another
PointerProvider
4. CSS override (last resort)
If you’ve tried the above solutions and are still experiencing issues, you can use CSS overrides as a last resort. Create a CSS file with higher specificity selectors:
Then import this CSS file in your application:
Note: Using CSS overrides should be a temporary solution while you debug the root cause. The PointerProvider
props are the recommended way to customize the widget’s appearance.
5. Z-index considerations
The Pointer widget uses a high z-index value (2147483647
) to ensure it appears above other elements on your page. While this should work in most cases, you might encounter issues with certain popups, modals, or dialogs:
If you notice that your popups or dialogs are being hidden behind the Pointer widget, this is likely because:
- Your popup’s stacking context is isolated from the main document flow
- The popup is using a relative z-index within a new stacking context
- There are intermediate elements creating new stacking contexts
To resolve z-index conflicts:
- Ensure your popups are rendered at the root level of your document (e.g., using a portal)
- Check for elements with
transform
,opacity
, orfilter
properties that might create new stacking contexts - Review your modal/dialog library’s documentation for z-index configuration options
Note: The Pointer widget intentionally uses the maximum possible z-index value to ensure it’s always accessible to users. In most cases, your popups should appear below the widget for the best user experience.
6. Debug with DevTools
You can use DevTools to:
- Verify your
PointerProvider
props are being passed correctly - Check if theme values are being properly consumed by child components
- Inspect the computed styles to see which CSS rules are being applied
If you’re still experiencing issues after trying these solutions, please reach out with:
- Your theme configuration code
- Screenshots of the styling issue
- Browser console errors (if any)
- Steps to reproduce the problem