Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50629 views
1
###
2
Theme configuration file for CoCalc
3
4
Copyright 2017, SageMath, Inc. -- ALL RIGHTS RESERVED
5
6
This file is not part of the open-source licensed release, because it contains information
7
specific to the company "SageMath, Inc." and the product "CoCalc".
8
Upon deployment, please replace this file with a suitable replacement (i.e. come up with your own name, etc.)
9
10
This is used mainly in the front-end, but some aspects are also used on the back-end
11
Note: it is not possible to "require" assets, like the logos -- they're defined in webapp/misc_page.
12
###
13
14
exports.SITE_NAME = 'CoCalc'
15
exports.COMPANY_NAME = 'SageMath, Inc.'
16
exports.COMPANY_EMAIL = '[email protected]'
17
exports.APP_TAGLINE = 'Collaborative Calculation in the Cloud'
18
exports.DNS = 'cocalc.com'
19
exports.DOMAIN_NAME = 'https://' + exports.DNS
20
exports.DISCUSSION_GROUP = 'https://groups.google.com/forum/#!forum/cocalc'
21
exports.WIKI_URL = 'https://github.com/sagemathinc/cocalc/wiki/Portal'
22
exports.HELP_EMAIL = '[email protected]'
23
exports.TWITTER_HANDLE = 'co_calc' # without the @
24
exports.BILLING_EMAIL = '[email protected]'
25
exports.BILLING_ADDRESS = '''
26
1212 East Barclay Court
27
Seattle, WA 98122, USA
28
'''
29
exports.BILLING_TAXID = 'TAX EIN: 47-3015407'
30
exports.COPYRIGHT_AGENT_HTML = '''
31
William Stein (Copyright Agent)<br>
32
c/o SageMath, Inc.<br>
33
1212 East Barclay Court<br>
34
Seattle, WA 98122<br>
35
<a href='mailto:[email protected]'>[email protected]</a>
36
'''
37
38
# this is used in smc-hub/email.coffee and hub.coffee to specify the template and ASM groups for sendgrid
39
exports.SENDGRID_TEMPLATE_ID = '0375d02c-945f-4415-a611-7dc3411e2a78'
40
# asm_group: 699 is for invites https://app.sendgrid.com/suppressions/advanced_suppression_manager
41
exports.SENDGRID_ASM_INVITES = 699
42
exports.SENDGRID_ASM_NEWSLETTER = 698
43
44
# This is the applications color scheme
45
COLORS =
46
BLUE_DDD : '#0E2B59'
47
BLUE_DD : '#2A5AA6'
48
BLUE_D : '#4474c0' # use this for the logo background, etc.
49
BLUE : '#6690D2'
50
BLUE_L : '#80afff'
51
BLUE_LL : '#94B3E5'
52
BRWN : '#593E05'
53
YELL_D : '#bf7b00'
54
YELL_L : '#fbb635'
55
GRAY_DD : '#303030'
56
GRAY_D : '#434343'
57
GRAY : '#808080'
58
GRAY_L : '#c0c0c0'
59
GRAY_L0 : '#e0e0e0'
60
GRAY_LL : '#eeeeee'
61
GRAY_LLL : '#f5f5f5'
62
BS_BLUE_BGRND : "rgb(66, 139, 202)"
63
BS_GREEN : '#5CB85C'
64
BS_GREEN_D : '#449d44'
65
BS_GREEN_DD : '#398439'
66
67
# The definitions below add semantic meaning by using the colors
68
69
# navigation bar at the top
70
COLORS.TOP_BAR =
71
BG : COLORS.GRAY_LL
72
HOVER : COLORS.GRAY_LLL
73
ACTIVE : 'white'
74
TEXT : COLORS.GRAY
75
TEXT_ACTIVE : COLORS.GRAY_D
76
X : COLORS.GRAY_D
77
X_HOVER : COLORS.GRAY
78
SIGN_IN_BG : COLORS.YELL_L
79
80
# landing page
81
COLORS.LANDING =
82
LOGIN_BAR_BG : COLORS.BLUE_D
83
84
85
exports.COLORS = COLORS
86
87