|
|
@@ -14,28 +14,31 @@ export default defineNuxtPlugin(nuxtApp => {
|
|
|
messages: { fr }
|
|
|
},
|
|
|
theme: {
|
|
|
- defaultTheme: 'otLightTheme',
|
|
|
+ defaultTheme: 'light',
|
|
|
themes: {
|
|
|
- otLightTheme: {
|
|
|
+ light: {
|
|
|
dark: false,
|
|
|
colors: {
|
|
|
- 'ot-green': '#00ad8e',
|
|
|
- 'ot-light-green': '#a9e0d6',
|
|
|
- 'ot-dark-grey': '#324150',
|
|
|
- 'ot-dark-grey-hover': '#2c3a48',
|
|
|
- 'ot-grey': '#777777',
|
|
|
- 'ot-header-menu': '#ECE7E5',
|
|
|
- 'ot-light-grey': '#f5f5f5',
|
|
|
- 'ot-super-light-grey': '#ecf0f5',
|
|
|
- 'ot-danger': '#f56954',
|
|
|
- 'ot-success': '#00a65a',
|
|
|
- 'ot-warning': '#f39c12',
|
|
|
- 'ot-info': '#3c8dbc',
|
|
|
- 'ot-menu-color': '#b8c7ce',
|
|
|
- 'ot-content-color': '#ecf0f4',
|
|
|
- 'ot-border-menu': '#f4f4f4',
|
|
|
- 'ot-white': '#ffffff',
|
|
|
- 'ot-black': '#000000'
|
|
|
+ /**
|
|
|
+ * @see Cf. doc/colors.md pour le rôle de chaque couleur
|
|
|
+ */
|
|
|
+ 'primary': '#00ad8e', // ot-green
|
|
|
+ 'primary-alt': '#a9e0d6', // ot-light-green
|
|
|
+ 'secondary': '#324150', // ot-dark-grey
|
|
|
+ 'secondary-alt': '#2c3a48', // ot-dark-grey-hover
|
|
|
+ 'ot-grey': '#777777', // ot-grey
|
|
|
+ 'ot-header-menu': '#ECE7E5', // ot-header-menu
|
|
|
+ 'ot-light-grey': '#f5f5f5', // ot-light-grey
|
|
|
+ 'ot-super-light-grey': '#ecf0f5', // ot-super-light-grey
|
|
|
+ 'ot-danger': '#f56954', // ot-danger
|
|
|
+ 'ot-success': '#00a65a', // ot-success
|
|
|
+ 'ot-warning': '#f39c12', // ot-warning
|
|
|
+ 'ot-info': '#3c8dbc', // ot-info
|
|
|
+ 'ot-menu-color': '#b8c7ce', // ot-menu-color
|
|
|
+ 'ot-content-color': '#ecf0f4', // ot-content-color
|
|
|
+ 'ot-border-menu': '#f4f4f4', // ot-border-menu
|
|
|
+ 'ot-white': '#ffffff', // ot-white
|
|
|
+ 'ot-black': '#000000' // ot-black
|
|
|
}
|
|
|
}
|
|
|
},
|