We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b781a8 commit 254d991Copy full SHA for 254d991
themer.d.ts
@@ -0,0 +1,18 @@
1
+declare module 'https://themer.sanity.build/api/hues?*' {
2
+ interface Hue
3
+ extends Omit<import('@sanity/color').ColorHueConfig, 'title' | 'midPoint'> {
4
+ midPoint: 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950
5
+ }
6
+ interface Hues {
7
+ default: Hue
8
+ transparent: Hue
9
+ primary: Hue
10
+ positive: Hue
11
+ caution: Hue
12
+ critical: Hue
13
14
+ export const hues: Hues
15
+ type Theme = import('sanity').StudioTheme
16
+ export function createTheme(_hues: Hues): Theme
17
+ export const theme: Theme
18
+}
0 commit comments