Dark mode arrow

This commit is contained in:
James Cole 2023-02-27 06:04:32 +01:00
parent 5cdecf7d04
commit 1ac18909b4
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
2 changed files with 8 additions and 2 deletions

View File

@ -410,13 +410,13 @@ function drawAChart(URL, container, chartType, options, colorData) {
mode: 'vertical',
scaleID: 'x-axis-0',
value: drawVerticalLine,
borderColor: 'red',
borderColor: lineColor,
borderWidth: 1,
label: {
backgroundColor: 'rgba(0,0,0,0)',
fontFamily: "sans-serif",
fontSize: 12,
fontColor: "#333",
fontColor: lineTextColor,
position: "right",
xAdjust: -20,
yAdjust: -125,

View File

@ -169,6 +169,12 @@
{% endblock %}
{% block scripts %}
<script type="text/javascript" nonce="{{ JS_NONCE }}">
var lineColor = 'red';
var lineTextColor = '#000';
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
var lineColor = '#a00';
var lineTextColor = '#bec5cb';
}
var billCount = {{ billCount }};
var accountFrontpageUrl = '{{ route('chart.account.frontpage') }}';
var accountRevenueUrl = '{{ route('chart.account.revenue') }}';