Skip to content

Commit 33c6d62

Browse files
committed
feat(theme): add light theme microsoft
1 parent 4e9b3ed commit 33c6d62

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/configs/site.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ export default {
2929
name: 'Google',
3030
icon: 'bi:sun-fill',
3131
},
32+
microsoft: {
33+
name: 'Microsoft',
34+
icon: 'bi:sun-fill',
35+
},
3236
},
3337
plugins: {
3438
counterAnalytics: {

theme.config.cjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,5 +204,13 @@ module.exports = {
204204
tertiary: themeColors.light['tertiary'],
205205
}, false)
206206
},
207+
{
208+
name: 'microsoft',
209+
extend: siteTheme({
210+
primary: '#0067b8',
211+
secondary: themeColors.light['secondary'],
212+
tertiary: themeColors.light['tertiary'],
213+
}, false)
214+
},
207215
]
208216
}

0 commit comments

Comments
 (0)