@@ -3064,10 +3064,65 @@ const articleSectionBackgroundDark: PaletteFunction = () =>
3064
3064
3065
3065
const articleSectionTitleLight : PaletteFunction = ( ) =>
3066
3066
sourcePalette . neutral [ 0 ] ;
3067
-
3068
3067
const articleSectionTitleDark : PaletteFunction = ( ) =>
3069
3068
sourcePalette . neutral [ 86 ] ;
3070
3069
3070
+ const articleSectionTitleNewsLight : PaletteFunction = ( ) =>
3071
+ sourcePalette . neutral [ 7 ] ;
3072
+ const articleSectionTitleNewsDark : PaletteFunction = ( ) =>
3073
+ sourcePalette . neutral [ 86 ] ;
3074
+
3075
+ const articleSectionTitleOpinionLight : PaletteFunction = ( ) =>
3076
+ sourcePalette . opinion [ 400 ] ;
3077
+ const articleSectionTitleOpinionDark : PaletteFunction = ( ) =>
3078
+ sourcePalette . opinion [ 500 ] ;
3079
+
3080
+ const articleSectionTitleSportLight : PaletteFunction = ( ) =>
3081
+ sourcePalette . sport [ 400 ] ;
3082
+ const articleSectionTitleSportDark : PaletteFunction = ( ) =>
3083
+ sourcePalette . sport [ 500 ] ;
3084
+
3085
+ const articleSectionTitleLifestyleLight : PaletteFunction = ( ) =>
3086
+ sourcePalette . lifestyle [ 400 ] ;
3087
+ const articleSectionTitleLifestyleDark : PaletteFunction = ( ) =>
3088
+ sourcePalette . lifestyle [ 450 ] ;
3089
+
3090
+ const articleSectionTitleCultureLight : PaletteFunction = ( ) =>
3091
+ sourcePalette . culture [ 400 ] ;
3092
+ const articleSectionTitleCultureDark : PaletteFunction = ( ) =>
3093
+ sourcePalette . culture [ 450 ] ;
3094
+
3095
+ const sectionBorderPrimaryLight : PaletteFunction = ( ) =>
3096
+ sourcePalette . neutral [ 20 ] ;
3097
+ const sectionBorderPrimaryDark : PaletteFunction = ( ) =>
3098
+ sourcePalette . neutral [ 38 ] ;
3099
+
3100
+ const sectionBorderSecondaryLight : PaletteFunction = ( ) =>
3101
+ sourcePalette . neutral [ 73 ] ;
3102
+ const sectionBorderSecondaryDark : PaletteFunction = ( ) =>
3103
+ sourcePalette . neutral [ 38 ] ;
3104
+
3105
+ const sectionBorderNewsLight : PaletteFunction = ( ) => sourcePalette . neutral [ 20 ] ;
3106
+ const sectionBorderNewsDark : PaletteFunction = ( ) => sourcePalette . neutral [ 38 ] ;
3107
+
3108
+ const sectionBorderOpinionLight : PaletteFunction = ( ) =>
3109
+ sourcePalette . opinion [ 450 ] ;
3110
+ const sectionBorderOpinionDark : PaletteFunction = ( ) =>
3111
+ sourcePalette . opinion [ 450 ] ;
3112
+
3113
+ const sectionBorderSportLight : PaletteFunction = ( ) => sourcePalette . sport [ 400 ] ;
3114
+ const sectionBorderSportDark : PaletteFunction = ( ) => sourcePalette . sport [ 400 ] ;
3115
+
3116
+ const sectionBorderLifestyleLight : PaletteFunction = ( ) =>
3117
+ sourcePalette . lifestyle [ 400 ] ;
3118
+ const sectionBorderLifestyleDark : PaletteFunction = ( ) =>
3119
+ sourcePalette . lifestyle [ 400 ] ;
3120
+
3121
+ const sectionBorderCultureLight : PaletteFunction = ( ) =>
3122
+ sourcePalette . culture [ 400 ] ;
3123
+ const sectionBorderCultureDark : PaletteFunction = ( ) =>
3124
+ sourcePalette . culture [ 400 ] ;
3125
+
3071
3126
const articleSectionSecondaryTitleLight : PaletteFunction = ( ) =>
3072
3127
sourcePalette . neutral [ 20 ] ;
3073
3128
@@ -6107,6 +6162,26 @@ const paletteColours = {
6107
6162
light : articleSectionTitleLight ,
6108
6163
dark : articleSectionTitleDark ,
6109
6164
} ,
6165
+ '--article-section-title-culture' : {
6166
+ light : articleSectionTitleCultureLight ,
6167
+ dark : articleSectionTitleCultureDark ,
6168
+ } ,
6169
+ '--article-section-title-lifestyle' : {
6170
+ light : articleSectionTitleLifestyleLight ,
6171
+ dark : articleSectionTitleLifestyleDark ,
6172
+ } ,
6173
+ '--article-section-title-news' : {
6174
+ light : articleSectionTitleNewsLight ,
6175
+ dark : articleSectionTitleNewsDark ,
6176
+ } ,
6177
+ '--article-section-title-opinion' : {
6178
+ light : articleSectionTitleOpinionLight ,
6179
+ dark : articleSectionTitleOpinionDark ,
6180
+ } ,
6181
+ '--article-section-title-sport' : {
6182
+ light : articleSectionTitleSportLight ,
6183
+ dark : articleSectionTitleSportDark ,
6184
+ } ,
6110
6185
'--article-text' : {
6111
6186
light : articleTextLight ,
6112
6187
dark : articleTextDark ,
@@ -7268,13 +7343,33 @@ const paletteColours = {
7268
7343
light : ( ) => sourcePalette . neutral [ 86 ] ,
7269
7344
dark : ( ) => sourcePalette . neutral [ 20 ] ,
7270
7345
} ,
7346
+ '--section-border-culture' : {
7347
+ light : sectionBorderCultureLight ,
7348
+ dark : sectionBorderCultureDark ,
7349
+ } ,
7350
+ '--section-border-lifestyle' : {
7351
+ light : sectionBorderLifestyleLight ,
7352
+ dark : sectionBorderLifestyleDark ,
7353
+ } ,
7354
+ '--section-border-news' : {
7355
+ light : sectionBorderNewsLight ,
7356
+ dark : sectionBorderNewsDark ,
7357
+ } ,
7358
+ '--section-border-opinion' : {
7359
+ light : sectionBorderOpinionLight ,
7360
+ dark : sectionBorderOpinionDark ,
7361
+ } ,
7271
7362
'--section-border-primary' : {
7272
- light : ( ) => sourcePalette . neutral [ 20 ] ,
7273
- dark : ( ) => sourcePalette . neutral [ 86 ] ,
7363
+ light : sectionBorderPrimaryLight ,
7364
+ dark : sectionBorderPrimaryDark ,
7274
7365
} ,
7275
7366
'--section-border-secondary' : {
7276
- light : ( ) => sourcePalette . neutral [ 73 ] ,
7277
- dark : ( ) => sourcePalette . neutral [ 38 ] ,
7367
+ light : sectionBorderSecondaryLight ,
7368
+ dark : sectionBorderSecondaryDark ,
7369
+ } ,
7370
+ '--section-border-sport' : {
7371
+ light : sectionBorderSportLight ,
7372
+ dark : sectionBorderSportDark ,
7278
7373
} ,
7279
7374
'--section-date' : {
7280
7375
light : ( ) => sourcePalette . news [ 400 ] ,
0 commit comments