File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <div class =" mt-10 sm:mt-20 bg-red-100 dark:bg-red-500 shadow-sm" >
2
+ <div class =" mt-10 sm:mt-20 bg-primary-light dark:bg-primary-dark shadow-sm" >
3
3
<div
4
4
class =" container mx-auto py-20 block sm:flex sm:justify-between sm:items-center"
5
5
>
Original file line number Diff line number Diff line change 17
17
appTheme === 'dark' &&
18
18
document . querySelector ( 'body' ) . classList . contains ( 'app-theme' )
19
19
) {
20
- document . querySelector ( 'body' ) . classList . add ( 'bg-background- primary-dark' ) ;
20
+ document . querySelector ( 'body' ) . classList . add ( 'bg-primary-dark' ) ;
21
21
} else {
22
- document . querySelector ( 'body' ) . classList . add ( 'bg-background- primary-light' ) ;
22
+ document . querySelector ( 'body' ) . classList . add ( 'bg-primary-light' ) ;
23
23
}
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ module.exports = {
4
4
theme : {
5
5
extend : {
6
6
colors : {
7
- background : {
8
- 'primary-light' : '#F7F8FC' ,
9
- 'secondary-light' : '#FFFFFF' ,
10
- 'ternary-light' : '#f6f7f8' ,
11
- 'primary-dark' : '#0D2438' ,
12
- 'secondary-dark' : '#102D44' ,
13
- 'ternary-dark' : '#1E3851' ,
14
- } ,
7
+ 'primary-light' : '#F7F8FC' ,
8
+ 'secondary-light' : '#FFFFFF' ,
9
+ 'ternary-light' : '#f6f7f8' ,
10
+ 'primary-dark' : '#0D2438' ,
11
+ 'secondary-dark' : '#102D44' ,
12
+ 'ternary-dark' : '#1E3851' ,
15
13
} ,
16
14
} ,
17
15
container : {
You can’t perform that action at this time.
0 commit comments