mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
16 lines
750 B
XML
16 lines
750 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- 企业版变色 -->
|
|
<template id="replace_theme_color" name="Replace theme color" inherit_id="web.webclient_bootstrap">
|
|
<xpath expr="//meta[@name='theme-color']" position="replace">
|
|
<meta name="theme-color" content="#875A7B"/>
|
|
<!-- Windows Phone -->
|
|
<meta name="msapplication-navbutton-color" content="#00796B"/>
|
|
<!-- iOS Safari -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
<meta name="theme-color" content="#875A7B" media="(prefers-color-scheme: light)"/>
|
|
<meta name="theme-color" content="#242733" media="(prefers-color-scheme: dark)"/>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|