This file is indexed.

/usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Breeze/ColorUtils.js is in qml-module-qtquick-controls-styles-breeze 4:5.12.4-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
//  Color manipulation utilities

function blendColors(clr0, clr1, p) {
    return Qt.tint(clr0, adjustAlpha(clr1, p));
}

function adjustAlpha(clr, a) {
    return Qt.rgba(clr.r, clr.g, clr.b, a);
}