aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/styles/theme
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/app/src/app/styles/theme')
-rw-r--r--client/js/app/src/app/styles/theme/colors.js1
-rw-r--r--client/js/app/src/app/styles/theme/common-colors.js1
-rw-r--r--client/js/app/src/app/styles/theme/common.js1
-rw-r--r--client/js/app/src/app/styles/theme/components.js1
-rw-r--r--client/js/app/src/app/styles/theme/index.js1
5 files changed, 5 insertions, 0 deletions
diff --git a/client/js/app/src/app/styles/theme/colors.js b/client/js/app/src/app/styles/theme/colors.js
index 5736b514329..c328ec92403 100644
--- a/client/js/app/src/app/styles/theme/colors.js
+++ b/client/js/app/src/app/styles/theme/colors.js
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export const SHADE = Object.freeze({
APP_BACKGROUND: 0,
SUBTLE_BACKGROUND: 1,
diff --git a/client/js/app/src/app/styles/theme/common-colors.js b/client/js/app/src/app/styles/theme/common-colors.js
index fa942d3abff..e6095a3ca3c 100644
--- a/client/js/app/src/app/styles/theme/common-colors.js
+++ b/client/js/app/src/app/styles/theme/common-colors.js
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export const commonColors = {
gray: [
'#fcfcfc',
diff --git a/client/js/app/src/app/styles/theme/common.js b/client/js/app/src/app/styles/theme/common.js
index 93a08721e5c..3695bb4c29e 100644
--- a/client/js/app/src/app/styles/theme/common.js
+++ b/client/js/app/src/app/styles/theme/common.js
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export const common = {
primaryShade: 6,
loader: 'oval',
diff --git a/client/js/app/src/app/styles/theme/components.js b/client/js/app/src/app/styles/theme/components.js
index 0994ad322d0..a7db1be0cb8 100644
--- a/client/js/app/src/app/styles/theme/components.js
+++ b/client/js/app/src/app/styles/theme/components.js
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export const components = {
AppShell: {
styles: () => ({
diff --git a/client/js/app/src/app/styles/theme/index.js b/client/js/app/src/app/styles/theme/index.js
index 2c69eb2af81..57712dfdd1f 100644
--- a/client/js/app/src/app/styles/theme/index.js
+++ b/client/js/app/src/app/styles/theme/index.js
@@ -1,3 +1,4 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import { common } from 'app/styles/theme/common';
import { components } from 'app/styles/theme/components';
import { commonColors } from 'app/styles/theme/common-colors';