#ifndef IOS_CHROME_BROWSER_COMPOSEBOX_PUBLIC_COMPOSEBOX_THEME_H_
#define IOS_CHROME_BROWSER_COMPOSEBOX_PUBLIC_COMPOSEBOX_THEME_H_
#import <UIKit/UIKit.h>
#import "ios/chrome/browser/composebox/public/composebox_input_plate_position.h"
@interface ComposeboxTheme : NSObject
@property(nonatomic, readonly) ComposeboxInputPlatePosition inputPlatePosition;
@property(nonatomic, readonly) BOOL incognito;
@property(nonatomic, readonly) BOOL isNTP;
@property(nonatomic, readonly) BOOL useIncognitoViewFallback;
@property(nonatomic, readonly) BOOL isTopInputPlate;
@property(nonatomic, readonly) UIColor* composeboxBackgroundColor;
@property(nonatomic, readonly) UIColor* inputPlateBackgroundColor;
@property(nonatomic, readonly) UIColor* inputItemBackgroundColor;
@property(nonatomic, readonly) UIColor* closeButtonBackgroundColor;
- (UIColor*)aimButtonTextColorWithAIMEnabled:(BOOL)AIMEnabled;
- (UIColor*)aimButtonBackgroundColorWithAIMEnabled:(BOOL)AIMEnabled;
- (UIColor*)aimButtonBorderColorWithAIMEnabled:(BOOL)AIMEnabled;
- (UIColor*)imageGenerationButtonTextColor;
- (UIColor*)imageGenerationButtonBackgroundColor;
- (UIColor*)sendButtonForegroundColorHighlighted:(BOOL)highlighted;
- (UIColor*)sendButtonBackgroundColorHighlighted:(BOOL)highlighted;
- (UIColor*)pdfSymbolColor;
- (instancetype)initWithInputPlatePosition:
(ComposeboxInputPlatePosition)position
incognito:(BOOL)incognito
isNTP:(BOOL)isNTP;
@end
#endif