OSDN Git Service

deploy: 57f68b5e28c5390408d240f71b2f5da03482b747
[alterlinux/hayao.fascode.net.git] / alter / Define.js
1 'use strict';
2
3 // ハンバーガーメニューのボタン
4 const MenuButton = document.getElementById("menu_button");
5
6 // ハンバーガーメニューの項目一覧
7 const Menu = document.getElementById("menu");
8
9 // リリース番号選択フォーム
10 const ReleaseIdForm = document.getElementById("releaseidform");
11
12 // エディション選択フォーム
13 const EditionForm = document.getElementById("editionform");
14
15 // ダウンロードボタン
16 const DownloadButton = document.getElementById("downloadbutton");
17
18 // <main>
19 const Main = document.getElementById("main");
20
21 // head内のタイトル
22 const MetaTitle = document.getElementById("meta_title");
23
24 // ヘッダー内のタイトル
25 const HeaderTitle = document.getElementById("header_title");
26
27 // 色
28 const CommonColor = "green";
29
30 //const Color1 = "black", Color2 = "white" , Color3 = "green-300"
31 const Color1 = `${CommonColor}-900`
32 const Color2 = `${CommonColor}-700`
33 const Color3 = `${CommonColor}-200`