aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/styles
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/app/src/app/styles')
-rw-r--r--client/js/app/src/app/styles/default/default-props.js1
-rw-r--r--client/js/app/src/app/styles/default/default-styles.js1
-rw-r--r--client/js/app/src/app/styles/default/index.js1
-rw-r--r--client/js/app/src/app/styles/global.js1
-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
9 files changed, 9 insertions, 0 deletions
diff --git a/client/js/app/src/app/styles/default/default-props.js b/client/js/app/src/app/styles/default/default-props.js
index c25d9009da9..87dbb2b5212 100644
--- a/client/js/app/src/app/styles/default/default-props.js
+++ b/client/js/app/src/app/styles/default/default-props.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 defaultProps = {
Button: { radius: 2 },
Badge: { size: 'sm' },
diff --git a/client/js/app/src/app/styles/default/default-styles.js b/client/js/app/src/app/styles/default/default-styles.js
index d65e4eecaef..182f4673286 100644
--- a/client/js/app/src/app/styles/default/default-styles.js
+++ b/client/js/app/src/app/styles/default/default-styles.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 { SHADE } from 'app/styles/theme/colors';
const inputSizes = Object.freeze({
diff --git a/client/js/app/src/app/styles/default/index.js b/client/js/app/src/app/styles/default/index.js
index 5ffc102d3d4..1d15d8f67bd 100644
--- a/client/js/app/src/app/styles/default/index.js
+++ b/client/js/app/src/app/styles/default/index.js
@@ -1,2 +1,3 @@
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
export { defaultProps } from 'app/styles/default/default-props';
export { defaultStyles } from 'app/styles/default/default-styles';
diff --git a/client/js/app/src/app/styles/global.js b/client/js/app/src/app/styles/global.js
index 900ae5d9304..123862b8cf7 100644
--- a/client/js/app/src/app/styles/global.js
+++ b/client/js/app/src/app/styles/global.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 styles = (theme) => ({
'*, *::before, *::after': {
boxSizing: 'border-box',
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';