1
1
---
2
2
title : SharePoint site theming - JSON schema
3
3
description : The new SharePoint site theming features use a JSON schema to store color settings and other information about each theme.
4
- ms.date : 05/09/2020
4
+ ms.date : 10/02/2021
5
5
ms.localizationpriority : high
6
6
---
7
7
@@ -351,45 +351,45 @@ The following table shows the color palette used by the Green theme.
351
351
352
352
<table >
353
353
<tr >
354
- <td style =" color :white ; background-color :#094c23 " >themeDarker: #094c23 </td >
354
+ <td style =" color :white ; background-color :#094c23 " >themeDarker: #294903 </td >
355
355
<td style =" color :white ; background-color :#000000 " >black: #000000</td >
356
356
</tr >
357
357
<tr >
358
- <td style =" color :white ; background-color :#0c602c " >themeDark: #0c602c </td >
359
- <td style =" color :white ; background-color :#212121 " >neutralDark: #212121 </td >
358
+ <td style =" color :white ; background-color :#0c602c " >themeDark: #386304 </td >
359
+ <td style =" color :white ; background-color :#212121 " >neutralDark: #201f1e </td >
360
360
</tr >
361
361
<tr >
362
- <td style =" color :white ; background-color :#0f7c39 " >themeDarkAlt: #0f7c39 </td >
363
- <td style =" color :white ; background-color :#333 " >neutralPrimary: #333 </td >
362
+ <td style =" color :white ; background-color :#0f7c39 " >themeDarkAlt: #427505 </td >
363
+ <td style =" color :white ; background-color :#333 " >neutralPrimary: #323130 </td >
364
364
</tr >
365
365
<tr >
366
- <td rowspan =" 3 " style =" font-weight :bold ; vertical-align :middle ; color :white ; background-color :#10893e " >themePrimary: #10893e </td >
367
- <td style =" color :white ; background-color :#3c3c3c " >neutralPrimaryAlt: #3c3c3c </td >
366
+ <td rowspan =" 3 " style =" font-weight :bold ; vertical-align :middle ; color :white ; background-color :#10893e " >themePrimary: #498205 </td >
367
+ <td style =" color :white ; background-color :#3c3c3c " >neutralPrimaryAlt: #3b3a39 </td >
368
368
</tr >
369
369
<tr >
370
- <td style =" color :white ; background-color :#666666 " >neutralSecondary: #666666 </td >
370
+ <td style =" color :white ; background-color :#666666 " >neutralSecondary: #605e5c </td >
371
371
</tr >
372
372
<tr >
373
- <td style =" color :black ; background-color :#a6a6a6 " >neutralTertiary: #a6a6a6 </td >
373
+ <td style =" color :black ; background-color :#a6a6a6 " >neutralTertiary: #a19f9d </td >
374
374
</tr >
375
375
<tr >
376
- <td style =" color :white ; background-color :#14a94e " >themeSecondary: #14a94e </td >
377
- <td style =" color :black ; background-color :#c8c8c8 " >neutralTertiaryAlt: #c8c8c8 </td >
376
+ <td style =" color :white ; background-color :#14a94e " >themeSecondary: #5a9117 </td >
377
+ <td style =" color :black ; background-color :#c8c8c8 " >neutralTertiaryAlt: #c8c6c4 </td >
378
378
</tr >
379
379
<tr >
380
- <td style =" color :black ; background-color :#7aefa7 " >themeTertiary: #7aefa7 </td >
381
- <td style =" color :black ; background-color :#eaeaea " >neutralLight: #eaeaea </td >
380
+ <td style =" color :black ; background-color :#7aefa7 " >themeTertiary: #85b44c </td >
381
+ <td style =" color :black ; background-color :#eaeaea " >neutralLight: #edebe9 </td >
382
382
</tr >
383
383
<tr >
384
- <td style =" color :black ; background-color :#bff7d5 " >themeLight: #bff7d5 </td >
385
- <td style =" color :black ; background-color :#f4f4f4 " >neutralLighter: #f4f4f4 </td >
384
+ <td style =" color :black ; background-color :#bff7d5 " >themeLight: #bdda9b </td >
385
+ <td style =" color :black ; background-color :#f4f4f4 " >neutralLighter: #f3f2f1 </td >
386
386
</tr >
387
387
<tr >
388
- <td style =" color :black ; background-color :#dffbea " >themeLighter: #dffbea </td >
389
- <td style =" color :black ; background-color :#f8f8f8 " >neutralLighterAlt: #f8f8f8 </td >
388
+ <td style =" color :black ; background-color :#dffbea " >themeLighter: #dbebc7 </td >
389
+ <td style =" color :black ; background-color :#f8f8f8 " >neutralLighterAlt: #faf9f8 </td >
390
390
</tr >
391
391
<tr >
392
- <td style =" color :black ; background-color :#effdf4 " >themeLighterAlt: #effdf4 </td >
392
+ <td style =" color :black ; background-color :#effdf4 " >themeLighterAlt: #f6faf0 </td >
393
393
<td style =" color :black ; background-color :#fff " >white: #fff</td >
394
394
</tr >
395
395
</table >
@@ -398,32 +398,32 @@ The following code shows how to define a dictionary in PowerShell for the Green
398
398
399
399
``` powershell
400
400
{
401
- themePrimary: '#10893e ',
402
- themeLighterAlt: '#effdf4 ',
403
- themeLighter: '#dffbea ',
404
- themeLight: '#bff7d5 ',
405
- themeTertiary: '#7aefa7 ',
406
- themeSecondary: '#14a94e ',
407
- themeDarkAlt: '#0f7c39 ',
408
- themeDark: '#0c602c ',
409
- themeDarker: '#094c23 ',
410
- neutralLighterAlt: '#f8f8f8 ',
411
- neutralLighter: '#f4f4f4 ',
412
- neutralLight: '#eaeaea ',
413
- neutralQuaternaryAlt: '#dadada ',
414
- neutralQuaternary: '#d0d0d0 ',
415
- neutralTertiaryAlt: '#c8c8c8 ',
416
- neutralTertiary: '#a6a6a6 ',
417
- neutralSecondaryAlt: '#767676 ',
418
- neutralSecondary: '#666666 ',
419
- neutralPrimary: '#333 ',
420
- neutralPrimaryAlt: '#3c3c3c ',
421
- neutralDark: '#212121 ',
401
+ themePrimary: '#498205 ',
402
+ themeLighterAlt: '#f6faf0 ',
403
+ themeLighter: '#dbebc7 ',
404
+ themeLight: '#bdda9b ',
405
+ themeTertiary: '#85b44c ',
406
+ themeSecondary: '#5a9117 ',
407
+ themeDarkAlt: '#427505 ',
408
+ themeDark: '#386304 ',
409
+ themeDarker: '#294903 ',
410
+ neutralLighterAlt: '#faf9f8 ',
411
+ neutralLighter: '#f3f2f1 ',
412
+ neutralLight: '#edebe9 ',
413
+ neutralQuaternaryAlt: '#e1dfdd ',
414
+ neutralQuaternary: '#d2d0ce ',
415
+ neutralTertiaryAlt: '#c8c6c4 ',
416
+ neutralTertiary: '#a19f9d ',
417
+ neutralSecondaryAlt: '#8a8886 ',
418
+ neutralSecondary: '#605e5c ',
419
+ neutralPrimary: '#323130 ',
420
+ neutralPrimaryAlt: '#3b3a39 ',
421
+ neutralDark: '#201f1e ',
422
422
black: '#000000',
423
423
white: '#fff',
424
424
primaryBackground: '#fff',
425
425
primaryText: '#333',
426
- accent: '#038387 '
426
+ accent: '#03787c '
427
427
}
428
428
```
429
429
0 commit comments