Skip to content

Commit 87eedd5

Browse files
authored
Update sharepoint-site-theming-json-schema.md
Fixed inconsistent JSON
1 parent 56fc4bc commit 87eedd5

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

docs/declarative-customization/site-theming/sharepoint-site-theming-json-schema.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -54,44 +54,44 @@ The colors in the **theme** element are specified as 6-digit or 3-digit hexadeci
5454
The following is an example of a JSON object that defines a theme.
5555

5656
```json
57-
{ 
58-
    name: 'Blue', 
59-
    isInverted: true, 
60-
    backgroundImageUri: '', 
61-
    theme: { 
62-
        themePrimary: "#00bcf2", 
63-
        themeLighterAlt: "#00090c", 
64-
        themeLighter: "#001318", 
65-
        themeLight: "#002630", 
66-
        themeTertiary: "#005066", 
67-
        themeSecondary: "#00abda", 
68-
        themeDarkAlt: "#0ecbff", 
69-
        themeDark: "#44d6ff", 
70-
        themeDarker: "#6cdfff", 
71-
        neutralLighterAlt: "#2e3340", 
72-
        neutralLighter: "#353a49", 
73-
        neutralLight: "#404759", 
74-
        neutralQuaternaryAlt: "#474e62", 
75-
        neutralQuaternary: "#4c546a", 
76-
        neutralTertiaryAlt: "#646e8a", 
77-
        neutralTertiary: "#c8c8c8", 
78-
        neutralSecondaryAlt: "#d0d0d0", 
79-
        neutralSecondary: "#dadada", 
80-
        neutralPrimaryAlt: "#eaeaea", 
81-
        neutralPrimary: "#ffffff", 
82-
        neutralDark: "#f4f4f4", 
83-
        black: "#f8f8f8", 
84-
        white: "#262a35", 
85-
        primaryBackground: "#262a35", 
86-
        primaryText: "#ffffff", 
87-
bodyBackground: "#ffffff";
88-
bodyText: "#333333";
89-
disabledBackground: "#f4f4f4";
90-
disabledText: "#c8c8c8";
91-
error: "#ff5f5f";
92-
accent: "#ffb900";
93-
} 
94-
} 
57+
{
58+
"name": "Blue",
59+
"isInverted": true,
60+
"backgroundImageUri": "",
61+
"theme": {
62+
"themePrimary": "#00bcf2",
63+
"themeLighterAlt": "#00090c",
64+
"themeLighter": "#001318",
65+
"themeLight": "#002630",
66+
"themeTertiary": "#005066",
67+
"themeSecondary": "#00abda",
68+
"themeDarkAlt": "#0ecbff",
69+
"themeDark": "#44d6ff",
70+
"themeDarker": "#6cdfff",
71+
"neutralLighterAlt": "#2e3340",
72+
"neutralLighter": "#353a49",
73+
"neutralLight": "#404759",
74+
"neutralQuaternaryAlt": "#474e62",
75+
"neutralQuaternary": "#4c546a",
76+
"neutralTertiaryAlt": "#646e8a",
77+
"neutralTertiary": "#c8c8c8",
78+
"neutralSecondaryAlt": "#d0d0d0",
79+
"neutralSecondary": "#dadada",
80+
"neutralPrimaryAlt": "#eaeaea",
81+
"neutralPrimary": "#ffffff",
82+
"neutralDark": "#f4f4f4",
83+
"black": "#f8f8f8",
84+
"white": "#262a35",
85+
"primaryBackground": "#262a35",
86+
"primaryText": "#ffffff",
87+
"bodyBackground": "#ffffff",
88+
"bodyText": "#333333",
89+
"disabledBackground": "#f4f4f4",
90+
"disabledText": "#c8c8c8",
91+
"error": "#ff5f5f",
92+
"accent": "#ffb900"
93+
}
94+
}
9595
```
9696

9797
<br/>

0 commit comments

Comments
 (0)