You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
533 B
29 lines
533 B
package com.fr.startup.ui; |
|
|
|
import java.awt.Color; |
|
|
|
/** |
|
* created by Harrison on 2022/07/07 |
|
**/ |
|
public class StartupPageConstants { |
|
|
|
/** |
|
* 圆弧长度 |
|
*/ |
|
public static final int ARC_DIAMETER = 20; |
|
|
|
/** |
|
* 内容宽度 |
|
*/ |
|
public static final int CONTENT_WIDTH = 850; |
|
|
|
/** |
|
* 边框的颜色 |
|
*/ |
|
public static final Color BORDER_COLOR = Color.WHITE; |
|
|
|
/** |
|
* 透明的颜色 |
|
*/ |
|
public static final Color TRANSPARENT_COLOR = new Color(0, 0, 0, 0); |
|
}
|
|
|